The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello!
I am trying to get a distinct count of ID's noted within a specific date range. My table has columns with ID's, start and end dates.
I can get the total rows that fall within the date range on any given day from the following:
Solved! Go to Solution.
Hi,
According to your description, I can roughly understand your requirement, you want to get a distinct count of ID's noted within a specific date range, right? I think you can try this method to get the expected result:
This is the test data I created based on your description:
You can create a calendar table to be placed into the slicer:
Calendar = CALENDAR(DATE(2022,1,1),DATE(2022,1,5))
Then you can create a measure like this:
Distinct count =
var _start=MINX(ALLSELECTED('Calendar'),'Calendar'[Date])
var _end=MAXX(ALLSELECTED('Calendar'),'Calendar'[Date])
return
CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER(ALL('Table'),[Start Date]>=_start&&[End Date]<=_end))
And you can create a slicer and a card chart to get what you want, like this:
You can download my test pbix file below
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
According to your description, I can roughly understand your requirement, you want to get a distinct count of ID's noted within a specific date range, right? I think you can try this method to get the expected result:
This is the test data I created based on your description:
You can create a calendar table to be placed into the slicer:
Calendar = CALENDAR(DATE(2022,1,1),DATE(2022,1,5))
Then you can create a measure like this:
Distinct count =
var _start=MINX(ALLSELECTED('Calendar'),'Calendar'[Date])
var _end=MAXX(ALLSELECTED('Calendar'),'Calendar'[Date])
return
CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER(ALL('Table'),[Start Date]>=_start&&[End Date]<=_end))
And you can create a slicer and a card chart to get what you want, like this:
You can download my test pbix file below
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I think you might be making life hard for yourself with the nested SWITCH/If when you could be using CALCULATE.
Are you able to share a demo pbix? Fairly sure we should be able to help.
Ben
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
19 | |
19 | |
18 | |
14 |
User | Count |
---|---|
42 | |
39 | |
24 | |
21 | |
19 |