The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi there
I have DAX code and my question how to make the Customer[Birthday] -- to make it dynamic as a slicer
Solved! Go to Solution.
Hi @Oded-Dror ,
Create a calendar table like:
calendar = calendarauto()
Then create a date-between slicer use the date column in calendar table.
At last, modify the formula as below:
Nothing return
Hi @Oded-Dror ,
Create a calendar table like:
calendar = calendarauto()
Then create a date-between slicer use the date column in calendar table.
At last, modify the formula as below:
With this approch it show nothing so I changed it to
Customer[Birthday] >= MIN('Customer'[Birthdate]) && Customer[Birthday] <= MAX('Customer'[Birthdate])
And it works as a measure