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.
I am sharing my Pbix file here.
I am trying to modify this measure (Refused_Historical) so that it considers output if it is same Step only.
So, for this case, I am trying to find output when Step = 1 (not including Step = 2 this case).
Currently, the output is 2, instead of 1, and that messes up when it comes to other calculation (SUMX) later on visual.
How do I express so that it only counts when Step is same?
Thanks for help again.
Solved! Go to Solution.
@JustinDoh1 Try:
VAR __Step = [Step]
if a column or MAX([Step]) if measure.
Then in your SUMMARIZE do SUMMARIZE(FILTER('Table1',[Step]=__Step).....
@JustinDoh1 Try:
VAR __Step = [Step]
if a column or MAX([Step]) if measure.
Then in your SUMMARIZE do SUMMARIZE(FILTER('Table1',[Step]=__Step).....
@Greg_Deckler Thank you so much again! I know I am getting better hands on DAX now 🙂
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.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |