Forum Discussion
Anonymous
8 years agoNot applicable
Column with max value in all Rows
I need a dax function that populates all Rows of column Top1 with the Max Value of sales. looking at the picture, i want 1423 in all rows.
- 8 years ago
Hi Anonymous,
I guess the [sales] is a measure. Maybe you can try it like this:
Measure 23 = CALCULATE ( MAXX ( SUMMARIZE ( Sales, Calender[Date].[Year], Calender[Date].[Month], "saless", SUM ( Sales[Quantity] ) ), [saless] ), ALL ( Calender ) )Best Regards!
Dale
v-jiascu-msft
8 years agoMicrosoft Employee
Hi Anonymous,
You can add another ALL() like this:
Measure 23 =
CALCULATE (
MAXX (
SUMMARIZE (
Sales,
Calender[Date].[Year],
Calender[Date].[Month],
"saless", SUM ( Sales[Quantity] )
),
[saless]
),
ALL ( Calender ),
ALL ( 'YourTable'[Nuts] )
)Best Regards!
Dale
Anonymous
8 years agoNot applicable
Thanks,
But´s now the problem is that, when i want to calculate the MAX-TOTAL...