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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Create a measure to get year corresponding to peak sales sum

We have two input tables and I want to return a grid as shown below. The tables are related based on the Product column via one to many relationship.  The year corresponds to the maximum sales sum for an Asset.

Example : for A1 the max sales sum is 90 so the year corresponding to that is 2022

Pixie123_0-1667299099763.png

 

1 ACCEPTED SOLUTION

Hi,

Sorry for the mistake.

Please kindly check the below whether it suits your requirement.

 

 

Year of max sales sum: =
VAR _maxsales =
    MAXX ( SUMMARIZE ( Table2, Table2[Year], Table2[Sales] ), Table2[Sales] )
VAR _maxsalesyear =
    FILTER (
        SUMMARIZE ( Table2, Table2[Year], Table2[Sales] ),
        Table2[Sales] = _maxsales
    )
RETURN
    IF ( HASONEVALUE ( Table1[Asset] ), MAXX ( _maxsalesyear, Table2[Year] ) )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1667299865285.png

 

 

Year of max sales sum: =
VAR _newtable =
    ADDCOLUMNS (
        DISTINCT ( Table2[Year] ),
        "@salessum", CALCULATE ( SUM ( Table2[Sales] ) )
    )
VAR _maxsales =
    GROUPBY (
        _newtable,
        Table2[Year],
        "@maxsales", MAXX ( CURRENTGROUP (), [@salessum] )
    )
RETURN
    IF ( HASONEVALUE ( Table1[Asset] ), MAXX ( _maxsales, Table2[Year] ) )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Anonymous
Not applicable

Thanks! But this not render the correct result for A1, it should be 2022

 

Hi,

Sorry for the mistake.

Please kindly check the below whether it suits your requirement.

 

 

Year of max sales sum: =
VAR _maxsales =
    MAXX ( SUMMARIZE ( Table2, Table2[Year], Table2[Sales] ), Table2[Sales] )
VAR _maxsalesyear =
    FILTER (
        SUMMARIZE ( Table2, Table2[Year], Table2[Sales] ),
        Table2[Sales] = _maxsales
    )
RETURN
    IF ( HASONEVALUE ( Table1[Asset] ), MAXX ( _maxsalesyear, Table2[Year] ) )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors