Finding next value down if cell is blank

Bojack85

New Member
Joined
Aug 1, 2021
Messages
2
Office Version
  1. 2019
Hi guys, Ive searched this forum a fair bit for the answer but I couldn't find it.

I have the following data set below and in Column G I would like it would like it to take a look and column D and if that cell is blank take the next cell down that has a value.

So for example if G2 to G4 it would return the value in D4 (£40,051.20) . Then from G5 to G9 it would return £31,318 etc

Is this possible?

1627834988890.png
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
With a dash in column D, I suspect that it has a value of 0, it is certainly not blank or empty.

Try this in G2, then fill down to the end of the data.
Excel Formula:
=IF(D2=0,G3,D2)
 
Upvote 0
With a dash in column D, I suspect that it has a value of 0, it is certainly not blank or empty.

Try this in G2, then fill down to the end of the data.
Excel Formula:
=IF(D2=0,G3,D2)
Perfect! thanks so much

This worked
 
Upvote 0

Forum statistics

Threads
1,214,780
Messages
6,121,527
Members
449,037
Latest member
tmmotairi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top