Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Everyone,
I have a table as specified in the below screenshot. I'm trying to calculate total unique days in the date range.
In this example, expect output is 30
How can we do it in DAX? This calculation needs to happen dynamically and the result will be used in remaining calculations. Hence PowerQuery solution is not suitable.
Solved! Go to Solution.
Hi @nandukrishnavs
This shall give you the desired result at the total level or in a card visual. Please refer to attached sample file.
unique days =
COUNTROWS (
DISTINCT (
SELECTCOLUMNS (
GENERATE (
'Table',
CALENDAR ( 'Table'[start date], 'Table'[end date] )
),
"@Days", [Date]
)
)
)
Hi @nandukrishnavs
This shall give you the desired result at the total level or in a card visual. Please refer to attached sample file.
unique days =
COUNTROWS (
DISTINCT (
SELECTCOLUMNS (
GENERATE (
'Table',
CALENDAR ( 'Table'[start date], 'Table'[end date] )
),
"@Days", [Date]
)
)
)