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
Hello,
I have a report with a Due Date on it. Is it possible to create a filter that will show only the dates before and including today and 2 weeks after today only?
Thank you in advance
Solved! Go to Solution.
@Anonymous , You can create a column or measure
measure =
calculate(Sum(table[Value]), filter(Table, Table[Due Date] >= Today() && Table[Due Date] <= (Today() +14 ) ) )
Flag Column = // you can use in the filter
if( Table[Due Date] >= Today() && Table[Due Date] <= Today() +14 ,1, 0)
@Anonymous , You can create a column or measure
measure =
calculate(Sum(table[Value]), filter(Table, Table[Due Date] >= Today() && Table[Due Date] <= (Today() +14 ) ) )
Flag Column = // you can use in the filter
if( Table[Due Date] >= Today() && Table[Due Date] <= Today() +14 ,1, 0)
Thanks a lot.
And what if I would like include the dates that are 30 days before today as well (I mean as an addition to the function you suggested)?
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 |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |