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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Based on the quater selection dynamically comments also need to change,if select all quater it's shows Quater 3 comments how to write Dax condition
Solved! Go to Solution.
hi @Praveen0303 ,
try to plot a visual with a measure like this:
Measure =
IF(
COUNTROWS(VALUES(data[Qtr]))=COUNTROWS(ALL(data[Qtr])),
MAXX(FILTER(data, data[Qtr]="Q3"), data[Comments]),
MAX(data[Comments])
)
it worked like:
hi @Praveen0303 ,
try to plot a visual with a measure like this:
Measure =
IF(
COUNTROWS(VALUES(data[Qtr]))=COUNTROWS(ALL(data[Qtr])),
MAXX(FILTER(data, data[Qtr]="Q3"), data[Comments]),
MAX(data[Comments])
)
it worked like:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.