I have date wise card turn over data for perticulare month.
Date cardturnover
2022-01-01 34345
2022-01-02 45346
2022-01-03 31267
2022-02-04 34590
2022-02-05 37812
I want to forecast what will the card turnover values for the remaing days of the month or what will be the forcast value for the next 7 days.basically how to genrate in month forcast in power bi.Please help.
Related
The source table has a table with a single amount and a revenue start and revenue end date. I need to graph the amount over the period by day in PowerBI.
For example:
Looking at the second row the total amount is 730 but I need to calculate a daily rate and display this each day for the revenue period. So if I had a bar chart for this row I would need to show it as 16 April has 34.76, 17 April has 34.76 and so on until 6 May which is the revenue end date. I've tried using between dates but cant seem to get it working.
You can use Power BI's CALENDAR() function to create a table of dates ranging from the minimum revenue start date to the maximum revenue end date.
Dates = CALENDAR(MIN(BookFees[Revenue Start Date]),MAX(BookFees[Revenue End Date]))
Then you can create a calculated column in the Dates table for the daily revenue.
Daily Revenue = Calculate(SUM(BookFees[RevenueDayAmount]),FILTER(BookFees,BookFees[Revenue Start Date]<=Dates[Date] && BookFees[Revenue End Date]>= Dates[Date]))
Here is the resulting bar chart:
I have an items table and a date table.
The item table contains all sales data, date sold, price per unit, unit sold, total price.
I have a date table also linked with date sold column on items table.
I would like to calculate total fiscal revenue and fiscal year on year revenue.
The fiscal year starts on 01 july and ends on 30 June.
Regards,
Alex
I am calculating total revenue over the years.
There are two tables calendar and sales. I have calculated total revenue using DAX now I want to display total revenue in each year.
The month field is not getting filtered for the Revenue column, I have attached a snip for reference.
Total revenue(DAX)= total revenue = SUMX(AW_Sales,AW_Sales[OrderQuantity] * RELATED(AW_Products_Lookup[ProductPrice]))
I need to make a total for each of the months based on the working days.
So far i have working days set as 1 if the day in the month is during Monday - Friday and 0 for Saturday and Sunday. I now need to total up the 1's and make it so that it is a single value for the month.
E.g Going the weekdays is 1 and weekend is 0, January will have 22 days on each row on the table in the data mode - January 1 = 232 January 2 = 22 etc. so i can use it to divide against my target which is set to the 1st of every month.
How can i do this??
try this. i haven't tested it.
=GROUPBY( FILTER(table, table[Working_Day]=1) , table[Month], ["new col", SUMX( CURRENTGROUP(), table[Month_Order])])
filter gives working day 1's data as table,then group by performed by month, then month order has been added and returns table.
I am working on SQL script in Redshift. As per the requirements, I have to show the month but the amounts need to be calculated QTD and YTD. How to ignore month dimension from the calculation and how to have YTD calculation for each month?
Example:
Month February: I need to show sum of amount for Jan and Feb as QTD and YTD
Month June: I need to show sum of amount April, May and June in QTD and Jan-June in YTD
ETC.
In selection, I need to show month, year with other dimension.