The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]
)