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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!