#VALUE error

GAcuren

New Member
Joined
Aug 30, 2023
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I have a formula on each row =IF(C50>0,AI50*D50*B50,"").

currently if there is no data the row is returning #value! and therefore, I cannot sum the column.

I would like for the cell to stay blank until data is input in the cells so that I can sum the column.

thank you in advance for the formula!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Hi,

=IF(C50>0,AI50*D50*B50,0)
Not working:
1737046300093.png
 

Attachments

  • 1737046285811.png
    1737046285811.png
    9.4 KB · Views: 4
Upvote 0
I need these to stay blank until I input the data.

=IF(C64>0,LOOKUP(C64,CONSUMABLES!B$4:B$60,CONSUMABLES!D$4:D$59),"")
=IF(C64>0,B64*D64,"")

currently error reported: #N/A and #Value!
 
Upvote 0
You could use:
=IF(C64>0,XLOOKUP(C64,CONSUMABLES!B$4:B$60,CONSUMABLES!D$4:D$60,""),"")
=IF(C64>0,IFERROR(B64*D64,""),"")
 
Upvote 0

Forum statistics

Threads
1,225,767
Messages
6,186,916
Members
453,386
Latest member
testmaster

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