Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
Solved! Go to Solution.
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
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
Hi,
I have another problem:
if i add another column "Nuts", Your measure23 don´t work for Nuts Context.
Can you help me
Best regards
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
Thanks,
But´s now the problem is that, when i want to calculate the MAX-TOTAL...
Hi @Anonymous
As a calculated column, you can use
Top1=MAX(TableName[Sales])
As a measure, you can use
Top1=Calculate(MAX(TableName[Sales]),All(TableName))
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |