Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi, everyone,
I'm working on a dax measure performance, this measure contains as funtion SUMX (As SUMX is an iterator function, it is degrading the performance) and I woul like to use another alternative to fix the performance issue.
the measure that I'm working on :
Measure* = SUMX(FILTER(VALUES(TABLE1[Column A]),[KLM]>250), IF(ISBLANK([Measure]),BLANK(),[Measure]))
So the two measures are used to calculate the sum by filtering the values in column A using another measure like TAG or KLM; for the first is to make a distinctcount and the second one by testing if the first measure is blank or not so if true return Blank and if not return the first measure.
Measure** = Calculate([Measure*]/[Measure])
For information: TAG KLM Measure* are measures
Can you show the code for [KLM] and [TAG]? Maybe share the pbix?
I was asking what [Measure] is supposed to do because I find the code a bit weird:
Measure = SUMX ( FILTER ( VALUES ( TABLE1[Column A] ), [TAG] <> BLANK () ), CALCULATE ( DISTINCTCOUNT ( TABLE1[Column A] ) ) )
you first get the (distinct) rows in column A where [TAG] is non blank. Then you do:
CALCULATE ( DISTINCTCOUNT ( TABLE1[Column A] ) )
but that will always yield 1 due to context transition, wont't it? Is that what you intended? So if I understand correctly that code is equivalent to:
Measure = COUNTROWS ( FILTER ( VALUES ( TABLE1[Column A] ), [TAG] <> BLANK () ), )
agree?
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Hi @Anonymous
What is the measure supposed to do exactly?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |