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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi
This is most likely extremely easy but I have not found a solution for this yet. I need to config my date slicer to start from 31/08/2020 until TODAY. I tried DATESBETWEEN function but that's not working for me:
Relative date = DATESBETWEEN('mee v_MasterData_Dates'[date_bkey], 31/08/2020, TODAY())
Solved! Go to Solution.
@Anonymous , Typically you have to create a flag like this and use
if( [Date] >=eomonth(today(),-1) && [Date] <= today(),1,0)
or
if( [Date] >=date(2020,08,31) && [Date] <= today(),1,0)
@Anonymous , Typically you have to create a flag like this and use
if( [Date] >=eomonth(today(),-1) && [Date] <= today(),1,0)
or
if( [Date] >=date(2020,08,31) && [Date] <= today(),1,0)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |