The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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:
User | Count |
---|---|
24 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
29 | |
13 | |
11 | |
9 | |
9 |