Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello All,
I want to have a list of dates as my calendar so that the user would be able to click each of these ranges and the outcome would be for my bar chart to dynamically change based on the selection:
The date ranges i want are:
< 14 days - 14 days ago to present day
15 - 29 days - 29 days ago to 15 days ago
30 + days - Anything that falls into 30 days ago or older
I have a calendar table available, the table that it will be filtering on has a due_date column also - these are linked via a relationship of Calendar[date] -> wkaw[due_date]
Any help would be appreciated.Thanks
Kevin
Solved! Go to Solution.
Hi @sullynivek,
You can refer to below steps to achieve your requirement, if it suitable for your requirement.
Steps:
1. Write dax formula to create calculated column to store range tag.
Range category =
VAR diff =
DATEDIFF ( [Date], TODAY (), DAY )
RETURN
IF (
diff <= 14,
"Less than 14 days",
IF ( diff <= 29, "15 to 29 days", "30 day or older" )
)
3. Use above column to create a slicer to enable the filter effect.
Notice: above filter effect also works on other related tables.
Regards,
Xiaoxin Sheng
Hi @sullynivek,
You can refer to below steps to achieve your requirement, if it suitable for your requirement.
Steps:
1. Write dax formula to create calculated column to store range tag.
Range category =
VAR diff =
DATEDIFF ( [Date], TODAY (), DAY )
RETURN
IF (
diff <= 14,
"Less than 14 days",
IF ( diff <= 29, "15 to 29 days", "30 day or older" )
)
3. Use above column to create a slicer to enable the filter effect.
Notice: above filter effect also works on other related tables.
Regards,
Xiaoxin Sheng
Hi @Anonymous,
This didn't work for me unfortunately, the graphs did pick up on the change but it would wipe out all the bars. When looking at the table it would return 14 days or less for some spurious dates i.e. 12/07/2017?
Not sure why it is doing this.
Could you share you demo with me?
kevin
hi @Anonymous,
It wasn't your solution that was the problem, it was my date table; for some reason it was changing the 1st 12 date entries of the month to the US format i.e. mm/dd/yyyy and the remainder of the month the format was dd/mm/yyyy?
I have recitified the date table and your solution is just perfect - thanks.
Kevin.
P.S. Wonder if you could look at another problem that i have - see it at this post:
https://community.powerbi.com/t5/Desktop/Calculating-mean-time-between-failures/m-p/320235#M142518
Would be appreciated if you could help with that please - K
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 |
|---|---|
| 56 | |
| 47 | |
| 44 | |
| 20 | |
| 20 |
| User | Count |
|---|---|
| 73 | |
| 72 | |
| 34 | |
| 33 | |
| 31 |