So I have a file of about 10k lines and I need to autofill upwards every blank value, and then take the next (previous) non-blank value and do the same. It would look like this:
Any ideas on how I could do this easily?
Thanks,
So I have a file of about 10k lines and I need to autofill upwards every blank value, and then take the next (previous) non-blank value and do the same. It would look like this:
Any ideas on how I could do this easily?
Thanks,
Filter the column F with blank. Enter the below formula in your F2 cell
=IF(F3<>"",F3,"")
Copy this cell to the rest of the blank cells till the end.