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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Learner86
Helper I
Helper I

Delete rows and groupby

Dear community, 

 

how can I solve the following problem: 

UsernameTypCostsFrequencyIndex
MustermanM12561
MustermanM320062
MustermanM320063
MustermanM40064
SaundersN380015
WootenK320016
BrownB380027
BrownB12528

 

I want to keep all rows with frequency 1 and if the frequency is bigger  than 1, then I want to keep the most expensive one (regarding the column costs). That means I want to keep the rows with the index number 2, 3, 5, 6, 7 and delete the rows with the numer 1 , 4,  8. How can I do this?

 

Thank you very much!

 

Best regards

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Community Champion
Community Champion

in dax:

new table=filter(table1,VAR _max=calculate(max(table1[costs]),allexcept(table1,table1[username],table1[typ])) RETURN table1[costs]=_max)

View solution in original post

2 REPLIES 2
wdx223_Daniel
Community Champion
Community Champion

in dax:

new table=filter(table1,VAR _max=calculate(max(table1[costs]),allexcept(table1,table1[username],table1[typ])) RETURN table1[costs]=_max)

It works, thank you very much wdx223_Daniel

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.