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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Dear team,
Please help me with the following problem scenario:
I want to print the value of a parameter in such a way:
Sample Data
Date Parameter Value
24/6 A 78
24/6 B 82
25/6 A 89
26/6 B 76
Case1:
If user selects date as 24/6, print 78 on a card, if parameter == A, else 82
Case2
If user selects date as 25/6, print 89 on a card, if parameter == A, else 76
Case 3:
If user selects both dates, then print the average(83.5 in this case) on the card, else average of B parameter corresponding values
Thanks in advance
Solved! Go to Solution.
@Anonymous ,
Try the below measure:
@Anonymous , Try like
if(selectedvalue(Table[Parameter]="A"),Average(Table[Value]),calculate(Average(Table[Value]),Table[Parameter]="B"))
@Anonymous ,
Try the below measure:
@Anonymous ,
For your convience I have uploaded PBIX file.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.