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
Hi,
I have a number field test_value that I need to see the values of based on some additional criteria below
Where test_ty in ("a","d")
and test_yy = "ttt"
I don't want it to summarize though, any idea how to do this please?
Solved! Go to Solution.
Hi @M_SBS_6 ,
You could try to create a measure like
Measure = CALCULATE(SUM('Table'[test_value]),FILTER('Table',[test_ty] in {"a","d"}&&[test_tt]="ttt"))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @M_SBS_6 ,
You could try to create a measure like
Measure = CALCULATE(SUM('Table'[test_value]),FILTER('Table',[test_ty] in {"a","d"}&&[test_tt]="ttt"))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@M_SBS_6 , Just use them as slicers and add required field in viusal
or create a measure and add to visual
countrows(Table, [test_ty] in {"a","d"} && test_yy = "ttt"))
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!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |