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! Learn more
I have a table which is structured like the picture below:
I wanted to create a measure where:
IF (Outreach Status = 'Outreach Needed' OR CL36B - BP 09272019.Outreach Status ='Outreach Needed'
Then, "Outreach Needed" ELSE "No Outreach Needed")
Please advise,
Solved! Go to Solution.
Is this not working for you
IF (Outreach Status = 'Outreach Needed' || CL36B - BP 09272019.Outreach Status ='Outreach Needed', "Outreach Needed" , "No Outreach Needed")
You need to choose tablename[columnname]
Hi @Bbrown44
Try this one:
IF (MAX('Table'[Outreach Status]) = "Outreach Needed" ||MAX('Table'[CL36B - BP 09272019.Outreach Status]) = "Outreach Needed", "Outreach Needed" , "No Outreach Needed")
Is this not working for you
IF (Outreach Status = 'Outreach Needed' || CL36B - BP 09272019.Outreach Status ='Outreach Needed', "Outreach Needed" , "No Outreach Needed")
You need to choose tablename[columnname]
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.