IF/AND Formula
I am trying to create a formula to track invoices that are completed under 30 days.
If the number in the "Invoice Duration" is less than 30 I'd like the next column "<30 Days" to populate with "Yes"
If the number in "Invoice Duration" is more than 30 I'd like it to populate "No"
Thank you for all the help!
Comments
-
Hi,
Try something like this.
The formula will show Yes if the cell is empty. Is that ok?
=IF([Invoice Duration]1 >= 30; "No"; IF([Invoice Duration]1 < 30; "Yes"))
The same version but with the below changes for your and others convenience.
=IF([Invoice Duration]1 >= 30, "No", IF([Invoice Duration]1 < 30, "Yes"))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
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 again,
Added an alternative.
This will be empty if the invoice duration is empty and I also added the @row function so you need not think about the rows.
=IF([Invoice Duration]@row = ""; ""; IF([Invoice Duration]@row >= 30; "No"; IF([Invoice Duration]@row < 30; "Yes")))
The same version but with the below changes for your and others convenience.
=IF([Invoice Duration]@row = "", "", IF([Invoice Duration]@row >= 30, "No", IF([Invoice Duration]@row < 30, "Yes")))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
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.
-
Yes! Thank you so much!
-
Excellent!
Happy to help!
Best,
Andrée
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
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!