FORMULA IF ISBLANK
I have a column called "Price" and a column called "''''Became a Lessee". I need to populate in the "Price column. If the "Became a Lessee" is blank, the "Price" column needs to stay blank. If the "Became a Lessee" is before 01/01/2021, the "Price" column needs to say $2500. If the "Became a Lessee" is equal to or after 01/01/2021, the "Price" column needs to say $7000.
I tried =IF(ISBLANK([became a lessee]@row)), "",IF([became a lessee]@row <= (DATE(2021, 1, 1)), "$7000", =IF([became a lessee]@row < (DATE(2021, 1, 1)), "$2500", "" and got #UNPARSEABLE
I tried other variations as well and can't seem to find the right formula. Some say #UNPARSEABLE and others say #INCORRECT ARGUEMENT.
Can someone please help?
Thanks.
Best Answer
-
Try something like this...
=IF([Became a Lessee]@row <> "", IF(YEAR([Became a Lessee]@row) >= 2021, 7000, 2500))
Answers
-
Try something like this...
=IF([Became a Lessee]@row <> "", IF(YEAR([Became a Lessee]@row) >= 2021, 7000, 2500))
-
It worked! Thank you!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 455 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!