Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I thought this would work but I am having a hard time to get the service days graph to work. Esentially I want to be able to count unique service days. It should be anywhere around 16 to 20 days as normally that is how many working days are in a month. I am getting 30 to 40 days? I am picking the month in the hirearchy and then I am distinct counting the days. I thought this makes sense but it must be doing something else. Is it they way its aggregating in the hierarchy that is messing t his up?
My visual
I brought this data source for Janaury and I get 15 days:
Remove the .[Date] part
That does not work...same outcome.
Hi @wherdzik ,
Try unchecking Automatic Date/Time. Then create and use the [Month] column in the date table as the axis.
= DISTINCTCOUNTNOBLANK('SEP YTD'[Service Date])
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Is there anyway someone can help me with this one?
I think you'll just confuse yourself by going to chatgpt.
--
Do you have multiple years in the data?
This current data is only Calendar Year
What is the [Count Days] measure?
I tried Chat GPT and it doesnt like the syntax.
VAR temptable =
SUMMARIZE (
FILTER (
'SEP YTD',
'SEP YTD'[Service Date] >= FIRSTDATE('SEP YTD'[Service Date]) &&
'SEP YTD'[Service Date] <= LASTDATE('SEP YTD'[Service Date])
),
'SEP YTD'[Service Date]
)
RETURN
COUNTROWS ( temptable )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!