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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
joshcomputer1
Helper V
Helper V

Daily, Weekly, Month filter

I just need to know if this is possible before I start to build it.  I want to send the link out to a report to a customerand have an easy to use filter for daily, weekly, and monthly.  Once the user clicks the filter, the visuals (column chart, boxes, line charts) will switch the range to that interval (ex: daily will show the last thirty days, weekly, last 9 nine weeks, etc). Then the user can click within the chart and drill down further to the day level.  I have data to the hour so daily is very important.  

 

I have no issues getting this stuff to work with static data, but the timing mechanism and drill downs seems to be difficult to implement the way I want it to.  

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@joshcomputer1,

 

One way is to simply add calculated columns and separate slicers.

isDaily =
DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY ) < 30
isWeekly =
DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY )
    < 7 * 9
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@joshcomputer1,

 

One way is to simply add calculated columns and separate slicers.

isDaily =
DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY ) < 30
isWeekly =
DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY )
    < 7 * 9
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi,

 

to add something to @v-chuncz-msft, I use this for datediffs (you'd only have to replace the column names): 

 

Collections Delay =

    SWITCH (

    TRUE ();

    Invoices[Collection Date] < Invoices[Overdue Date]; DATEDIFF ( Invoices[Collection Date];Invoices[Overdue Date]; DAY )* -1;

    Invoices[Collection Date] > Invoices[Overdue Date]; DATEDIFF ( Invoices[Overdue Date]; Invoices[Collection Date]; DAY );

    0)

 

This way, you can avoid the limitation to datediff that forces one date to be more recent than the other (Just in case you run into that issue).

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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