Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I want to create a measure where I will filter records based on user selected End date.
(i.e. if user choose last 2 years from relative date filter than @Enddate will be 31/12/2017 and @ startdate will be 1/1/2016)
Then I want to put condition like fact[EndDate]>@enddate in measure.
How I can get the value of @enddate in a measure.
Thanks,
Anisha
Solved! Go to Solution.
You may refer to DAX below.
Measure = VAR enddate = MAX ( 'Calendar'[Date] ) RETURN enddate
You may refer to DAX below.
Measure = VAR enddate = MAX ( 'Calendar'[Date] ) RETURN enddate
Yes, its giving correct value but when used in creating measure or calculating column, its not filtering records accordingly.