Help with Formula!
Hello,
I'm pretty new to smartsheet but slowly working out how to create some functioning formulas! I wonder if anybody might be able to help me with the latest one please?
I have multiple columns containing different data types (some are tick boxes, others are dates and some will say 'N/A' - I am trying to write a formula to return 'Package Complete' is all columns are not blank, or return 'Documents Pending' is any of them are blank...
Is this possible??
Thanks!
Laura
Comments
-
Hi Laura,
Welcome to the Community and the wonderful world of Smartsheet!
Yes, it's possible!
Can you describe your process in more detail and maybe share the sheet(s) or some screenshots? (Delete/replace any confidential/sensitive information before sharing) That would make it easier to help. (share too, andree@getdone.se)
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.
-
We can start by finding out exactly how many cells are in the range.
=COUNTIFS([First Column]@row:Last Column]@row, OR(ISBLANK(@cell), NOT(ISBLANK(@cell))))
Then we count how many are not blank.
=COUNTIFS([First Column]@row:Last Column]@row, NOT(ISBLANK(@cell)))
If we compare the two in an IF statement to generate "Package Complete" if they are the same number, otherwise generate "Documents Pending", then we get something like this...
=IF(first_formula = second_formula, "Package Complete", "Documents Pending")
=IF(COUNTIFS([First Column]@row:Last Column]@row, OR(ISBLANK(@cell), NOT(ISBLANK(@cell))))= COUNTIFS([First Column]@row:Last Column]@row, NOT(ISBLANK(@cell))), "Package Complete", "Documents Pending")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!