Forum Discussion
Green_Cloud
Helper I
4 years agoWeekly Running Total and Transformation Rate based on Two Measures
From the data source below, how can I build a report given that- Ad count=COUNT (adddate) Sales count= COUNT(salesdate) Report and Data Source are below- REPORT: DATA SOURCE: ...
- 4 years ago
Hi, Green_Cloud ;
Change it.
countstart = CALCULATE(COUNT('Table'[unique id]),FILTER('Table',[addate]<=MAX('Date'[weekend])))countend = CALCULATE(COUNT('Table'[unique id]),FILTER('Table',[saledate]<=MAX('Date'[weekend])))rate = [countend]/[countstart]The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
4 years agoGreen_Cloud , With help from the date table, joined to date or to week date of your table.
You can have the week start and weekend date on your table
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all(date),date[date] <=max(date[Date])))
Green_Cloud
Helper I
4 years agoThanks for the response. Can you please elaborate more?