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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.