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
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
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.