Forum Discussion
Anonymous
3 years agoNot applicable
Daily Required Run rate
Hello , I want to add a calculated column of the daily required run rate by the company. My data looks like below. I have 2 tables ( 1 for acheived data and other for planned data ) to check the p...
DimaMD
Solution Sage
3 years agoHi Anonymous If you have a plan for only one date, you can break it into days, try this event
VAR _plan = [_Plan margin]
VAR _2AmountDatesMount = DAY(EOMONTH(MIN('Календар'[Date]),0))
VAR _3PlanDates =DIVIDE(_Plan, _2AmountDatesMount)
VAR _4 = DATEDIFF( MIN('Dates'[Date]),MAX('Dates'[Date]),DAY)+1
return
_3PlanDates*_4
Anonymous
3 years agoNot applicable
I have tried this measure it is reflecting only for first day of the month ...how can i get it daily ?