Formula Question: IF Not Blank, Do "This"
Smartsheeters!
I have a use case where I want to reflect "yes" in a column if a certain range of columns has text in it AND "no" in that column if that range of cells is BLANK. I tried this formula below and it is not working.
What am I missing?
=IF(ISBLANK([SALESFORCE Data Error: Late Fee % or Grace Period]1:[YARDI: Timing Charges Not Billed to Ledger]1), "No", "Yes"))
Thank you!!
Best Answer
-
isblank can only look at one item at a time and you have given it a range. You need to convert that range to a single item, then check if it is blank.
=IF(ISBLANK(join([SALESFORCE Data Error: Late Fee % or Grace Period]1:[YARDI: Timing Charges Not Billed to Ledger]1)), "No", "Yes"))
Answers
-
isblank can only look at one item at a time and you have given it a range. You need to convert that range to a single item, then check if it is blank.
=IF(ISBLANK(join([SALESFORCE Data Error: Late Fee % or Grace Period]1:[YARDI: Timing Charges Not Billed to Ledger]1)), "No", "Yes"))
-
I see - that makes sense.
I did try this and it is still showing "#UNPARSEABLE"... hm. Any ideas why this is happening?
-
my guess is you either misplaced or didn't place the closing parenthesis in the correct location. Can you post the adjusted equation?
EDIT:
never mind, its is the ending parenthesis. You had 2 of them at the very end of your formula, you should only have one. I didn't catch that originally.
-
=IF(ISBLANK(JOIN([SALESFORCE Data Error: Late Fee % or Grace Period]1:[YARDI: Timing Charges Not Billed to Ledger]1)), "No", "Yes"))
-
I edited my previous comment, apologies didn't think you would catch it that quick.
-
it worked! thank you!!!!
-
Super!
-
Hello!
I am wanting to add a criteria to this formula :) I want to count if any of the multiple columns is blank AND if it meets the region@row criteria.
Thoughts here?
-
Hi
I've got a similar issue... I'd like this column formula to ignore blanks and if not put a '1' for duplicates
=IF(COUNTIFS(Budget:Budget, Budget@row) > 1, 1)
Any help greatly appreciated!
-
Hi @RebeccaF
You can ignore blanks by adding a statement at the beginning:
=IF(Budget@row = "", 0, IF(COUNTIFS(Budget:Budget, Budget@row) > 1, 1))
Let me know if that worked for you!
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thanks @Genevieve P. ! this worked!!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 67 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!