Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 🙂
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
18 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |