Auto fill blank cells in Excel
Andrew Henderson
I have downloaded sales data from webstore and the rows are itemised, but they only provide the date in one cell for the order.
I am trying to work out how I can auto fill the blank cells with the missing dates automatically?
I will then have the same data on another sheet so it would need to carry over for when the dates are filtered.
31 Answer
You can use something like =IF(A4="";B3;A4) to take the above date if the left cell is empty. You will possibly have to use an auxiliary column for that.