Can you share some insight on what’s the logic to get daily sales as I can’t understand how are you achieving Sales of 142,764 on 1/7/2019, 162765 on 2/7/2019 and So-On
It’s good to see you here. I would recommend that you watch this video by sam ans it shows in detail how you can achieve your desired results with different granularities.
Thank for your reply , its a the sale that we make daily . So on the day 1st july we made $142K for the day and 2nd July we made $162K for the day .
What I am trying to do here is get an alert if the daily sales has been achieve .
So lets say daily sales is $142k and daily budget is 152K – we have not achieved the sales for the day
and 2nd day is $162K and daily budget is $152K we have achived the daily target.
This is a request from the board member , not sure that the reason .
at the moment on the budget data , I only have Monthly Budget figure . total trading days for the month . Example July 19 budget is 5,263,565 and trading day is 23 = when I divide I will get a daily budget right with is $228,851 , but whn I drop it in the table . I am only getting it for 1 day . which is for all the 1st day of the month .
I would like to get same budget figure after divide it for all the days .
I did see this video , prior to post .
Sam is working with the yearly figure and dividing by monthly days and 366.
I think im missing a point . I have different budget for different month .
My working day is working fine - as it exclude working and public holiday . So I have total days of 252 a year and correct if drop in montly table.
Can I use a calculate and filter to give the same result for each month ?
ii) [Year] field in Budget table in Text format like “Jul-19”. First create a new column in Date Table
Month-Year = FORMAT('Calendar'[Date],"mmm-yy")
Then create a Measure like below.
TotalBudgetSalesPerDay =
CALCULATE (
SUM ( Budget[Sales Per Day] ),
TREATAS ( VALUES ( ‘Calendar’[Month-Year] ), Budget[Year] )
)
If issue is still not resolved, suggest to share a sample PBIX file.
HI @ankit Tried to so it but im only getting the full yearly figure . I am looking for Daily sales figure in all the date for the month and so on . I will share the pbix file in abit.
If i take the relation ship out ( delete) is throwing off my cumulative budget for the year .