Return Blank cell rather than "False" in If Then Statement, Formula

gmduece

New Member
Joined
Dec 9, 2015
Messages
17
Hello,

I'm trying to stamp date a field id another is occupied. =IF(A8>0,NOW())

if it is blank it displays False, what is the formula symbol for blank?

Thanks
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Welcome to the board.

Every IF has 3 arguments
IF(Expression,Value_If_True,Value_If_False)

Only the Value_If_False argument is optional, and when it's omitted the formula will simply return FALSE if the Expression is False.

So you just need to tell it what to return "" instead of FALSE when the expression is False..
Try

=IF(A8>0,NOW(),"")
 
Upvote 0
How do I fire a macro from the formula: to wit

Sub NowFix()
'
' NowFix Macro
'

'
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,330
Messages
6,124,310
Members
449,152
Latest member
PressEscape

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