Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
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.
Solved! Go to Solution.
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
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
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).
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 38 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 67 | |
| 34 | |
| 32 | |
| 29 |