Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a requirement to create a Card visual to show one specific Rating based from the date slicer. It appears that it is showing a different one as I compare it on the entire table below. The Expected output is Very Poor. I can resolve this issue by enabling the bi-directional filter but I don't want to do it since it will cause ambiguity for the model. Is there another way to resolve this kind of issue?
Solved! Go to Solution.
Hi @v_mark ,
Please use the measure:
StarRating =
FIRSTNONBLANKVALUE (
'Fact'[Date],
CALCULATE (
MIN ( 'Dimension'[category] ),
KEEPFILTERS ( 'Dimension'[Rating Value] = MAX ( 'Fact'[Store Rating] ) )
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v_mark ,
Please use the measure:
StarRating =
FIRSTNONBLANKVALUE (
'Fact'[Date],
CALCULATE (
MIN ( 'Dimension'[category] ),
KEEPFILTERS ( 'Dimension'[Rating Value] = MAX ( 'Fact'[Store Rating] ) )
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@VahidDM - Yes they are connected to each other. I've attached a sample pbix for reference
Can you pleae upload that on https://gofile.io/ and send me the link
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
I was able to drop a file on that link and updated the link on this trend
Hi @v_mark
It seems you added the Category Column to the Card Value field, and because that column has Text format, the card shows the first item in the column (that Below start with B so it's the first)
You need to write a measure or connect those tables to each others
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!