what am i doing wrong?

mccallda

New Member
Joined
May 20, 2011
Messages
3
hi everyone, i know i am being stupid but i cannot get this formula to work..... i am doing a nested if formua and i can get it to work, but i cant seem to report back if when a cell is blank it to report back an error.

for example, if(cell> cell),"True","false") but i how do i get it to add if the cell is blank report back blank?

i have tried a few things and i cannot seem to add this in and it is driving me up the wall. i know its simple and i will slap myself for this but help!!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Two IF formulas will work, one nested in the other - the first to test for blank, the second to either compare values or return your error message:
=IF(ISBLANK(cell),"#ERROR#",IF(cell>cell,TRUE,FALSE))

I often use LEN() but that's probably not as common as the above solution:
=IF(LEN(cell),IF(cell>cell,TRUE,FALSE),"#ERROR#")
 
Upvote 0

Forum statistics

Threads
1,224,575
Messages
6,179,637
Members
452,934
Latest member
Jdsonne31

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