Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
nandukrishnavs
Super User
Super User

Unique days in the specified range

Hi Everyone,

 

I have a table as specified in the below screenshot. I'm trying to calculate total unique days in the date range.

nandukrishnavs_1-1676379056214.png

 

In this example, expect output is 30

 

nandukrishnavs_2-1676379329428.png

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. 

 

 


Regards,
Nandu Krishna

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @nandukrishnavs 
This shall give you the desired result at the total level or in a card visual. Please refer to attached sample file.

1.png

unique days = 
COUNTROWS (
    DISTINCT (
        SELECTCOLUMNS ( 
            GENERATE (
                'Table',
                CALENDAR ( 'Table'[start date], 'Table'[end date] )
            ),
            "@Days", [Date]
        )
    )
)

View solution in original post

2 REPLIES 2
nandukrishnavs
Super User
Super User

Awesome! Thank you @tamerj1  


Regards,
Nandu Krishna

tamerj1
Super User
Super User

Hi @nandukrishnavs 
This shall give you the desired result at the total level or in a card visual. Please refer to attached sample file.

1.png

unique days = 
COUNTROWS (
    DISTINCT (
        SELECTCOLUMNS ( 
            GENERATE (
                'Table',
                CALENDAR ( 'Table'[start date], 'Table'[end date] )
            ),
            "@Days", [Date]
        )
    )
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors