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
thorpyuk
Helper III
Helper III

Count Days Selected

Hi All,

I want to count the number of days currently selected by my sliders.... i have a year and a week slider. I did try this based on an article i found, but i can't seem to get it working:

 

CurrentDays = 
VAR FirstDay = CALCULATE(
        MIN('db_v_BaseCalendar_TYLY'[TransDate]),
        ALLSELECTED('db_v_BaseCalendar_TYLY'[TransDate]) )
VAR LastDay = CALCULATE(
    MAX('db_v_BaseCalendar_TYLY'[TransDate]),
    ALLSELECTED('db_v_BaseCalendar_TYLY'[TransDate]) )
RETURN
    DATESBETWEEN( 'db_v_BaseCalendar_TYLY'[TransDate],FirstDay,LastDay )

Thanks for your help! 

1 ACCEPTED SOLUTION
nandukrishnavs
Super User
Super User

@thorpyuk 

 

Please try this

 

 

Total Days =
CALCULATE (
    DISTINCTCOUNT ( 'db_v_BaseCalendar_TYLY'[TransDate] )
)

 

 

Not sure about your data model and slicer actions. If this is not working then share your sample dataset and page snapshot.



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂 


Regards,
Nandu Krishna

View solution in original post

2 REPLIES 2
nandukrishnavs
Super User
Super User

@thorpyuk 

 

Please try this

 

 

Total Days =
CALCULATE (
    DISTINCTCOUNT ( 'db_v_BaseCalendar_TYLY'[TransDate] )
)

 

 

Not sure about your data model and slicer actions. If this is not working then share your sample dataset and page snapshot.



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂 


Regards,
Nandu Krishna

Perfect, exactly what i wanted, thanks!

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.