Forum Discussion
gav1991
2 years agoFrequent Visitor
Dynamic total measure , based on slicer
Hi, I'm trying to calculate dynamic total, for the total orders palced YTD (i already have a seperate column for the total by week), also there is multiple customers in slicer. When i select the slic...
- Anonymous2 years ago
Hi gav1991 ,
Please try below code to create a [Acutal %] measure.
Actual % = CALCULATE ( DIVIDE ( SUM ( 'Order'[Orders placed ≤ 1 Day] ), SUM ( 'Order'[Total No of Orders placed] ) ), ALLEXCEPT ( 'Order', 'Order'[Customer] ) )Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi gav1991 ,
Please try below code to create a [Acutal %] measure.
Actual % =
CALCULATE (
DIVIDE (
SUM ( 'Order'[Orders placed ≤ 1 Day] ),
SUM ( 'Order'[Total No of Orders placed] )
),
ALLEXCEPT ( 'Order', 'Order'[Customer] )
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
gav1991
2 years agoFrequent Visitor
thanks Anonymous it worked much appriciated.