Nestled IF Formula(s)
I'm sure this is simple, but I can't seem to get it.
I'm trying to have the Partial Billed Dollars show in the AR column if Billed column contains a date. But once Paid column contains a date, I need that AR column to show Blank. This is done on the "child(ren)" level. I have a formula that SUMs the children.
I appreciate any help.
Thanks
Answers
-
Hi, Rhonda.
Try this...
=IF(AND(ISBLANK(Paid@row), NOT(ISBLANK(Billed@row)),[Partial Billed Dollars]@row),"")
Explanation...
You have 2 conditions for which you want the partial-billed dollars to show in the cell:
- When there is no date in Paid
ISBLANK(Paid@row)
- When the customer has been billed
NOT(ISBLANK(Billed@row))
IF( AND(Condition1, Condition2) , value_if_true, value_if_false )
- When there is no date in Paid
-
Returned
#INVALID DATA TYPE
-
The below formulas work well individually within the cell. I need them nested properly.
=IF(NOT(ISBLANK(Billed@row)), [Partial Billed Dollars]@row)
=IF((ISBLANK(Paid@row)), [Partial Billed Dollars]@row)
Maybe this will help you move me in the right direction.
Thanks-
Rhonda
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!