If Statement Help
Three conditions to meet the result.
[Name] to match with another reference sheet with [Full_Name]
from other reference sheet: PayerAbv = "B"
from other reference sheet: Effective Date = Not blank
return "Yes" or "No"
=IF({Full_Name} = [Name]@row, {PayerAbv} = "B", {EffDate} <> "", "Yes", "No")
Best Answer
-
Try an IF COUNTIFS instead.
Basically you want to use the COUNTIFS to count how many rows meet your range/criteria sets, t hen say if that count is greater than zero (at least one row meets your criteria) then output "Yes", otherwise "No".
=IF(COUNTIFS({Full_Name}, @cell = Name@row, {PayerAbv}, @cell = "B", {EffDate}, @cell <> "")> 0, "Yes", "No")
Answers
-
Try an IF COUNTIFS instead.
Basically you want to use the COUNTIFS to count how many rows meet your range/criteria sets, t hen say if that count is greater than zero (at least one row meets your criteria) then output "Yes", otherwise "No".
=IF(COUNTIFS({Full_Name}, @cell = Name@row, {PayerAbv}, @cell = "B", {EffDate}, @cell <> "")> 0, "Yes", "No")
-
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 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!