Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello everyone,
I am trying to have a table written in dax, with MIN and MAX values of a measure.
I have a measure that varies based on several slicers; I woul dlike to have a table that automatically creates 4 clusters based on this measure.
I have built a table with 4 columns (id, Segment, Min, Max) like so :
And it doesn't work as it seems that the table cannot accept a measure for the values.
As soon as I replace the table's code by hard coded values, it works.
Any help would be much appreciated!
Thanks,
Stan
You should not create calculated columns from measures. You cannot create calculated tables from measures (unless it is a single row single column table). In both cases your measure will use a non-existent filter context.
The maximum you can do is create a table variable as an intermediate step in a measure definition.
Measure a =
Var b= summarize (c,[d])
Return countrows(b)
Summarize is not able to be dynamic, even built with a measure unfortunately.
Thanks anyway!
That's news to me. Please try it out.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |