Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Juanpablocl
Frequent Visitor

Help with a calculated column

How could I accomplish this "Fuerza en kneepoint" with a calculated column? 

Juanpablocl_0-1683768402818.jpeg

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)

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Juanpablocl 

try like:

Fuerza en kneepoint=
MAXX(
FILTER(
data,
data[Nivel]=EARLIER(data[Nivel])&&[Delta]=[Kneepoint]
),
data[Fuerza]
)

FreemanZ_0-1683769603250.png

View solution in original post

2 REPLIES 2
wdx223_Daniel
Super User
Super User

CalculatedColumn=MAXX(FILTER(Table,Table[Nivel]=EARLIER(Table[Nivel])&&Table[Delta]=Table[Kneepoint]),Table[Fuerza])

FreemanZ
Super User
Super User

hi @Juanpablocl 

try like:

Fuerza en kneepoint=
MAXX(
FILTER(
data,
data[Nivel]=EARLIER(data[Nivel])&&[Delta]=[Kneepoint]
),
data[Fuerza]
)

FreemanZ_0-1683769603250.png

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.