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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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