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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
fva6937
Frequent Visitor

Return the Value of the Highest Month of Sales

I need to find the best month of sales and return its value (for the max value of the gauge).

 

 

 

Screen Shot 2018-01-30 at 12.04.18 AM.png

 

Anyone :)?

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

HI @fva6937

 

Try this Measure for Highest Month Value

 

HighestMonthValue =
MAXX (
    SUMMARIZE (
        TableName,
        TableName[Date].[Month],
        "Total Sales", SUM ( TableName[Sales] )
    ),
    [Total Sales]
)

Regards
Zubair

Please try my custom visuals

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

HI @fva6937

 

Try this Measure for Highest Month Value

 

HighestMonthValue =
MAXX (
    SUMMARIZE (
        TableName,
        TableName[Date].[Month],
        "Total Sales", SUM ( TableName[Sales] )
    ),
    [Total Sales]
)

Regards
Zubair

Please try my custom visuals

Thant's Awesome! Thanks!!

 

Is there a way that I could get the value by the Salesperson, when I filter?

 

I tried SUMX, but I still have more to learn Smiley Very Happy

Hi @fva6937

 

Then use this MEASURE for Month with Highest Sales

 

HighestMonth =
VAR mytable =
    SUMMARIZE (
        TableName,
        TableName[Date].[Month],
        "Total Sales", SUM ( TableName[Sales] )
    )
VAR myValue = [HighestMonthValue]
RETURN
    CALCULATE (
        FIRSTNONBLANK ( TableName[Date].[Month], 1 ),
        FILTER ( mytable, [Total Sales] = myValue )
    )

Regards
Zubair

Please try my custom visuals

@fva6937

 

HighestSales.png


Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors