Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi, guys. It is possible to create a filtered table, so that it is an auxiliary dCalendar, with a date range according to the date chosen by the user? For example, in the graph below, I would like only the data from 12/31/2021 to 01/09/2021 to appear. That is, instead of putting my complete dCalendar on the x-axis I would put the filtered.
Can't you use the regular date slicer set to "Between"?
You will need a Calendar Table for that though
Proud to be a Super User!
Paul on Linkedin.
Hi, Paul, the intention is for the user to choose only one date.
...and the measure calculates what date range?
Proud to be a Super User!
Paul on Linkedin.
Do you want to see the data for the last year based on the date selected?
See if this works for you.
1) Duplicate you date table using (I've called the duplicate "Period Filter") new table in the ribbon and
Period Filter = 'Calendar Table'
Join this table to the Calendar table in a1-to many inactive relationship with a single filter direction from the Period Filter Table to the Calendar Table. The model should look like this:
Now add the slicer from the calendar table, and create the visual using the date field from the Period filter table as the axis.
Create a measure along these lines:
Data by sel date =
VAR CalD = MAX('Calendar Table'[Date])
VAR SelPeriods = DATESINPERIOD('Period Filter'[Date], CalD, -1, YEAR)
RETURN
CALCULATE([Sum of Sales],
REMOVEFILTERS('Calendar Table'),
KEEPFILTERS(SelPeriods),
USERELATIONSHIP('Calendar Table'[Date], 'Period Filter'[Date]))
Add this measure to the visual and you will get:
Proud to be a Super User!
Paul on Linkedin.
when I put it on a card it appears as the dates I want.
But in table no.
Yes. My sincere apologies for my previous comment (which I have deleted since I realised how silly and, of course, wrong it was).
have you tried the solution I posted?
Proud to be a Super User!
Paul on Linkedin.
Hi, Paul, in my case it didn't work like yours, the x axis didn't change.
do you have "Auto Date-Time " selected in the file options?
Proud to be a Super User!
Paul on Linkedin.
yes, but it seems it doesn't understand that the 9th is the selected data.
User | Count |
---|---|
21 | |
20 | |
15 | |
10 | |
7 |
User | Count |
---|---|
28 | |
28 | |
13 | |
12 | |
12 |