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! Request now

Reply
RafaelAri
Helper III
Helper III

Add max value column

I have this list of quotations, where each quotation has a version, from A and up.

I want to add custom column, that contain the highest version, for each quotation.

Many thanks in advance,

RafaelAri_0-1679551477439.png

 

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

Hi @RafaelAri ,

 

You could try below code:-

Column =
CALCULATE (
    MAX ( 'Table'[version] ),
    FILTER ( 'Table', 'Table'[Quote no] = EARLIER ( 'Table'[Quote no] ) )
)

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

4 REPLIES 4
grazitti_sapna
Super User
Super User

Hey Try using this

Create a new column under the modeling tab and try this:

Max Value = Calculate (max('Max Value'[Version]), allexcept('Max Value','Max Value'[Quot. No.]))

Where [Max Value] is the table name

Samarth_18
Community Champion
Community Champion

Hi @RafaelAri ,

 

You could try below code:-

Column =
CALCULATE (
    MAX ( 'Table'[version] ),
    FILTER ( 'Table', 'Table'[Quote no] = EARLIER ( 'Table'[Quote no] ) )
)

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Sorry, doesn't work.

EARLIER function is not correct.

Where should I use this code? in Mesures table or in the Query-Editor?

My appologies..., it works!
Thanks Samarth

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.

Top Solution Authors