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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
nandukrishnavs
Community Champion
Community Champion

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
Community Champion
Community Champion

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.