gtd526
Well-known Member
- Joined
- Jul 30, 2013
- Messages
- 684
- Office Version
- 2019
- Platform
- Windows
Hello,
I'm using the following formula. If the first 'if' is true, then perform 2 separate If's, if either of the 2 if's are true, then return 'pd'. which it does correctly.
If the first if is false then return "", currently it returns 'false'.
How can I return "" when the first If is false?
Thank you
I'm using the following formula. If the first 'if' is true, then perform 2 separate If's, if either of the 2 if's are true, then return 'pd'. which it does correctly.
If the first if is false then return "", currently it returns 'false'.
How can I return "" when the first If is false?
Excel Formula:
IF(MONTH(K10)&YEAR(K10)=MONTH('BOA-9547'!$D$3)&YEAR('BOA-9547'!$D$3),IF(COUNTIFS('BOA-9547'!$A$3:$A$33,$N$8,'BOA-9547'!$D$3:$D$33,">0"),"pd",IF(COUNTIFS('BOA-9547'!$G$3:$G$33,$N$8,'BOA-9547'!$J$3:$J$33,">0"),"pd","")))
Thank you