This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I am trying to calculate a calutated column which goes like this
(row - min(row))/(max(row) - min(row))
It works perfectly
What I want is that I have another column called number with number 1, 2, 3
I want to populate above thing with number as the filter such that for rows with number 1
min(row) is minimum value for row where number is 1 and so on
Thank you for any help on this!
1) Instead of creating calculated column, create measures to fo such calculations (row - min(row))/(max(row) - min(row))
2) You can use below measures to filter data
selectedMeasure = SELECTEDVALUE(Table[ColumnName])
MetricFIlter = SWITCH( TRUE(),
[selectedMeasure]="1", [DailyActiveUsers],
[selectedMeasure] ="2", [DailyCallingActiveUsers]
BLANK())
I do not understnad two things,
first
a measure to calculate (row- row(min))/(row(max) - row(min)) in a measure how to select row when I use CALCULATE it gives me an error saying I need to use aggregation?
Second
in the metric filter what is [DailyActiveUsers] column?
I appreciate your help!
Thank You.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 27 | |
| 20 | |
| 19 |