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.
Hello: I would like to use a date column from my fact table to filter my data without using DAX and YTD functions if possible.
I woul like to filter all records in the current year of the Policy Date column. The Is in the last 1 Years option gives me the last 52 weeks over the course of 2022 and 2023.
The in the last 1 calendar years option gives me the entirety of 2022.
I can accomplish my requirement by filtering anyting after 1/1/23, but that will require someone to change that filter when the calendar turns again.
Solved! Go to Solution.
@mjanecek , if there is no date filter, then a measure like this or visual filter on using this measure can help
This year Today =
var _min = eomonth(today(),-1*month(today()))+1
var _max = eomonth(_min,12 -1*month(today()) )
return
CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))
or try default date
Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA
@mjanecek , if there is no date filter, then a measure like this or visual filter on using this measure can help
This year Today =
var _min = eomonth(today(),-1*month(today()))+1
var _max = eomonth(_min,12 -1*month(today()) )
return
CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))
or try default date
Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA
User | Count |
---|---|
123 | |
69 | |
67 | |
58 | |
52 |
User | Count |
---|---|
185 | |
92 | |
67 | |
62 | |
52 |