Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
How could I accomplish this "Fuerza en kneepoint" with a calculated column?
I need a calculated column that gives me the value of "Fuerza" where "both "Delta and "Kneepoint" are equal for every row of the correspondent "Nivel".
I've tried with a conditional IF formula, however I can only get the values in black not the red ones (where the delta&kneepoint dont match)
Solved! Go to Solution.
hi @Juanpablocl
try like:
Fuerza en kneepoint=
MAXX(
FILTER(
data,
data[Nivel]=EARLIER(data[Nivel])&&[Delta]=[Kneepoint]
),
data[Fuerza]
)
CalculatedColumn=MAXX(FILTER(Table,Table[Nivel]=EARLIER(Table[Nivel])&&Table[Delta]=Table[Kneepoint]),Table[Fuerza])
hi @Juanpablocl
try like:
Fuerza en kneepoint=
MAXX(
FILTER(
data,
data[Nivel]=EARLIER(data[Nivel])&&[Delta]=[Kneepoint]
),
data[Fuerza]
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 14 | |
| 8 | |
| 8 | |
| 8 |