Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I need to find the best month of sales and return its value (for the max value of the gauge).
Anyone :)?
Solved! Go to Solution.
HI @fva6937
Try this Measure for Highest Month Value
HighestMonthValue = MAXX ( SUMMARIZE ( TableName, TableName[Date].[Month], "Total Sales", SUM ( TableName[Sales] ) ), [Total Sales] )
HI @fva6937
Try this Measure for Highest Month Value
HighestMonthValue = MAXX ( SUMMARIZE ( TableName, TableName[Date].[Month], "Total Sales", SUM ( TableName[Sales] ) ), [Total Sales] )
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
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 ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
65 | |
45 | |
39 | |
31 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |