The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Need help in building a report. it is necessary to show the number of orders for a similar period.
Using CALCULATE formula (COUNTROWS (Sheet1); DATEADD (Sheet1 [date]; - 7; DAY)) report obtained over a period of 7 days.
But what if the user selects a date with the help of the filter?
I used a new measure that would count the number of days in the period: CountDay = DATEDIFF (MIN (Sheet1 [date]); MAX (Sheet1 [date]); DAY).
Result inserted in the formula for the same period of recovery: SamePerVar2 = CALCULATE (COUNTROWS (Sheet1); DATEADD (Sheet1 [date]; - 'Sheet1' [CountDay] -1; DAY)).
As a result, I realized that in this measure there are always zero days.
Help improve the formula.
Thank you.
pbx here: https://drive.google.com/file/d/1J1VUyJ2SMdHu9LZ_VrvR4SA3Gyy_Re23/view?usp=sharing
Solved! Go to Solution.
Hi @Anthony007,
Based on my test, you could refer to below steps:
1.Create a calender table and create relationship with your row table:
2.Create two measures:
CountDay2 = VALUE(DATEDIFF (MIN ('Table'[Date]), MAX ('Table'[Date]), DAY))
Measure = CALCULATE(COUNT(Sheet1[id]),DATEADD('Table'[Date],[CountDay2],DAY))
3.Use the calender data column as the slicer,
Result:
You could also download the pbix file to have a view:
https://www.dropbox.com/s/3lkmj2bqmt8psle/DATEADD%20combined%20with%20filter%20function.pbix?dl=0
Regards,
Daniel He
Hi @Anthony007,
Based on my test, you could refer to below steps:
1.Create a calender table and create relationship with your row table:
2.Create two measures:
CountDay2 = VALUE(DATEDIFF (MIN ('Table'[Date]), MAX ('Table'[Date]), DAY))
Measure = CALCULATE(COUNT(Sheet1[id]),DATEADD('Table'[Date],[CountDay2],DAY))
3.Use the calender data column as the slicer,
Result:
You could also download the pbix file to have a view:
https://www.dropbox.com/s/3lkmj2bqmt8psle/DATEADD%20combined%20with%20filter%20function.pbix?dl=0
Regards,
Daniel He
Many thanks for the response and help.
Creating a calendar table and relationships really helps in counting the number of days in a period. But at the same time, the date hierarchy is lost and the graph displays information in the wrong way:
And the result is the following:As if to compare this period with a similar one.
Perhaps there is another way to count the number of days in a period without creating a date table? Or try creating a date hierarchy manually?
I'm now trying to write a formula that simply considers the number of unique values in the date column using DISTINCTCOUNT
User | Count |
---|---|
75 | |
70 | |
39 | |
30 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
48 | |
46 |