Forum Discussion
Anonymous
5 years agoNot applicable
Calculated Column - Calculation to Sum based on Date
Hi Experts Need a calculated column calculation to sum based on dates ( i have sales for the same date) and then divide Amount by Rate values See sample Data Month Amount Rate 01/02/...
- 5 years ago
Anonymous
Please try this New Column:New Column = DIVIDE( Table3[Amount], CALCULATE( SUM(Table3[Amount]), ALLEXCEPT(Table3,Table3[Month] ) ) ) - Anonymous5 years ago
many thanks
Fowmy
5 years agoSuper User
Anonymous
Please try this New Column:
New Column =
DIVIDE(
Table3[Amount],
CALCULATE(
SUM(Table3[Amount]),
ALLEXCEPT(Table3,Table3[Month] )
)
)
- Anonymous5 years agoNot applicable
many thanks