Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
How do I create a value that is based on multiple inputs/criteria in multiple rows and columns of data?
Example:
Desired outcome - see last column:
Which formula can I use to create a column that:
Thanks for your help!
Solved! Go to Solution.
@Anonymous Maybe:
Measure =
VAR __Table = FILTER('Table',[Local Customer] = "Yes")
VAR __Count = COUNTROWS(__Table) + 0
RETURN
IF(__Count > 0, "YES", "NO")
@Anonymous Maybe:
Measure =
VAR __Table = FILTER('Table',[Local Customer] = "Yes")
VAR __Count = COUNTROWS(__Table) + 0
RETURN
IF(__Count > 0, "YES", "NO")
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.