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
Hi there,
I have a measure that compared four measures with numbers and produces the output in the form of "Yes" or "No". The measure looks like as follow:
final measure =
Solved! Go to Solution.
Why not just add 0 to each measure so they are never blank, and they never satisfy their condition.
final measure =
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Why not just add 0 to each measure so they are never blank, and they never satisfy their condition.
final measure =
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@Anonymous , I already tried that and it did not work. Moreover, I want to setup blank measure in such away that if measure is blank then it should not be the part of if condition.
Hi @Dunner2020 - Can you try measure like below:
final measure =
IF(NOT ISBLANK([measure1]) >= 4 && NOT ISBLANK([measure2])>=10 && NOT ISBLANK([measure3])>=14 && NOT ISBLANK([measure4]) >= 14,"Yes","No")
Thanks,
-Namish B
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.