IF formula or Nested IF
I'm trying to create a formula using the Flag symbol and a % Allocated to Project column. I would like the flag to raise if the % Allocated to Project column is 50% or less. If greater than 50% or Blank I would like the flag to stay down.
I thought I could accomplish this with =IF([% Allocated to Project]@row< 0.5, 1, 0) however, the flag still raises when the field is blank.
Any help would be appreciated!
Comments
-
Hi Tina,
Try something like this.
You need to add an IF for the blank value. I prefer the ISBLANK function.
=IF(ISBLANK([% Allocated to Project]@row); 0; IF([% Allocated to Project]@row < 0,5; 1; 0))
The same version but with the below changes for your and others convenience.
=IF(ISBLANK([% Allocated to Project]@row), 0, IF([% Allocated to Project]@row < 0.5, 1, 0))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Hi Andrée,
Thank you so much for your help. This worked perfectly!
Have a great week!
Tina
-
Excellent!
Happy to help!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!