Forum Discussion
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 performance i need to show what is the daily runrate should be to acheive plannd value.
thanks in advance.
Anonymous Check out the attached file and tell me if this is your desired result!
pbix file
28 Replies
- tamerj1
Community Champion
Hi Anonymous
Are the two tables connect with a relatioship? If so, what type of relationship and based on whih column? Do you have a date table? Can you please provide sample of the source data along with the expected result? The calculated column need to be created in which table?- AnonymousNot applicable
hello thank you for your reply firstlt there is no relation between twi tables except date column and I am getting achived values on DAILY basis and planned values on MONTHLY basis attatching both the data tables along with the desired results
- DimaMD
Solution Sage
Hi 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- AnonymousNot applicable
I have tried this measure it is reflecting only for first day of the month ...how can i get it daily ?- DimaMD
Solution Sage
Anonymous You need to unlink the plan table from the date table