Excel Formula

Scouser

New Member
Joined
Jan 29, 2004
Messages
3
e.g.
cell A1 Todays Date (Now),
cell A2 if blank no change,
If A2 has a date less than A1, then text to apear "Remove date", is this possible?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Yes this is possible are you familiar with IF statements?

if not let me know and i will right the formula down for you.
 
Upvote 0
Scouser said:
e.g.
cell A1 Todays Date (Now),
cell A2 if blank no change,
If A2 has a date less than A1, then text to apear "Remove date", is this possible?

=if(a2<a1,"Remove date",a2)

if's go:
=if(condition to meet, if true then, if false then)

HTH
 
Upvote 0
Just so firefytr's answer displays correctly:
Code:
=if(a2<a1,"Remove date",a2)

if's go:
=if(condition to meet, if true then, if false then)
 
Upvote 0
oops! :oops:

that's what i had, don't know what happened. that's a little embarassing :(

but thank you iridium!
 
Upvote 0
firefytr said:
oops! :oops:

that's what i had, don't know what happened. that's a little embarassing :(

but thank you iridium!

Not your fault - just a feature the HTML coding of the page - that's all!
 
Upvote 0

Forum statistics

Threads
1,215,772
Messages
6,126,804
Members
449,337
Latest member
BBV123

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