Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fill in blank Excel cells using value from another column?

Similar to Fill non-contiguous blank cells with the value from the cell above the first blank but using an adjacent column instead.

I have something like this:

enter image description here

For all the blank values in column A, I would like it to be populated with the matching value from column C. So A2 would be populated with C2 and A4 with C4.


1 Answers

In a new column D, you can use the formula =IF(ISBLANK(A4), C4, A4) and that would output:

A   B   C   D
-------------
X   Y   Y   X
    G   R   R
e   9   T   e
    K   7   7
like image 187
Vinícius Figueiredo Avatar answered Sep 08 '25 02:09

Vinícius Figueiredo