Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
29 | |
14 | |
11 | |
10 | |
9 |