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
I have two coloumns in one of the tables of my data model : Start Date and End Date
I need to filter values based on the Condition that every time the user opens the report ,the date of opening the report(Current date) should fall between the Start Date and End Date .
Can anyone help me out in this?
Thanks in advance !!!
Solved! Go to Solution.
Hi @Anonymous ,
Create a measure like below and add it to filter.
Measure = IF(SELECTEDVALUE('Table'[date])<=TODAY(),1,0)
Result would be shown as below.
Best Regards,
Jay
Hi @Anonymous ,
Create a measure like below and add it to filter.
Measure = IF(SELECTEDVALUE('Table'[date])<=TODAY(),1,0)
Result would be shown as below.
Best Regards,
Jay
@Anonymous , You to create a new column like this in date table and select as "Select" value
Switch( True () ,
[Date] >=min(Table[Start Date]) && [Date] >=max(Table[End Date]), "Select",
"UnSelected"
)
Also refer: https://www.youtube.com/watch?v=hfn05preQYA
Thank you for the answer.Do I need to create a new date table which is only for dates or I can add this column in the exisiting table which has start and end date coloumns?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |