Forum Discussion
Alessandra
8 years agoHelper I
Calculate numeric distribution
Hi, In tableau, I've calculate the numeric distribution like this: max({ FIXED [Date],[Brand] : sum({ FIXED [BusinessID],[Date],[Brand]: max([Value])})}). And I want to calculate the same formula...
- 8 years ago
Hi Alessandra,
The formula of DN could be the one like below according to your data.
DN Measure = SUMX ( SUMMARIZE ( 'Table2', 'Table2'[Channel], "MaxSubtotal", MAX ( 'Table2'[Subtotal] ) ), [MaxSubtotal] )Best Regards,
Dale
v-jiascu-msft
8 years agoMicrosoft Employee
Hi Alessandra,
The formula of DN could be the one like below according to your data.
DN Measure =
SUMX (
SUMMARIZE (
'Table2',
'Table2'[Channel],
"MaxSubtotal", MAX ( 'Table2'[Subtotal] )
),
[MaxSubtotal]
)Best Regards,
Dale
Alessandra
8 years agoHelper I
Thank you SO MUCH v-jiascu-msft