How to use IF(ISBLANK and another IF formula?

Hi,
I am using this formula =IF(AND(NOT(ISBLANK([Latest Update]@row)), Level@row = 2), "Update", "") and I would like to add =IF(Level@row = 1, "Project Update") if it is Not Project Update it it needs to be blank.
When I put them together I keep getting an error. =IF(AND(NOT(ISBLANK([Latest Update]@row)), Level@row = 2), "Update", ""), IF(AND(NOT(ISBLANK([Latest Update]@row)), Level@row = 1), "Project Update", "")
Any assistance is appreciated.
Thanks!
Best Answers
-
Hi Tina
Try this formula:
=IF(AND(NOT(ISBLANK([Latest update]@row)), Level@row = 2), "Update", IF(AND(NOT(ISBLANK([Latest update]@row)), Level@row = 1), "Project Update", ""))
Kind regards,
Jana
-
It is actually an issue with the nested IF's. Give this a try...
=IF(AND(NOT(ISBLANK([Latest Update]@row)),Β Level@rowΒ = 2), "Update", IF(AND(NOT(ISBLANK([Latest Update]@row)),Β Level@rowΒ = 1), "Project Update", ""))
Answers
-
Hi Tina
Try this formula:
=IF(AND(NOT(ISBLANK([Latest update]@row)), Level@row = 2), "Update", IF(AND(NOT(ISBLANK([Latest update]@row)), Level@row = 1), "Project Update", ""))
Kind regards,
Jana
-
It is actually an issue with the nested IF's. Give this a try...
=IF(AND(NOT(ISBLANK([Latest Update]@row)),Β Level@rowΒ = 2), "Update", IF(AND(NOT(ISBLANK([Latest Update]@row)),Β Level@rowΒ = 1), "Project Update", ""))
-
Hi Paul, Used your suggestion for a similar situation on nested IF's that i was facing .
-
@shibani rai Great! It is always nice to know that solutions are able to help more than just the original poster.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!