Reputation: 1
Using Excel, I would like to create a conditional Date formula as follows:
If the Date is Greater than or Equal to January 18, 2013, Enter $220.00 in this cell.
Is this possible to do?
Thanks
Upvotes: 0
Views: 220
Reputation: 46331
If cell A1 holds the date try this formula in another cell
=IF(A1>=DATE(2013,1,18),220,"")
format the formula cell as currency
Upvotes: 4