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! It's time to submit your entry. Live now!
Hello everyone,
I have a visual that shows performance on orders MTD , I want to also include orders in the system for the next 7 days. I have looked at the filtering options but I cant find anything that will do what I want. Also this filter has to be automated, it should not require a person to put the dates in.
Solved! Go to Solution.
Create a measure like
Date is visible =
VAR CurrentDate =
SELECTEDVALUE ( 'Date'[Date] )
RETURN
IF ( CurrentDate >= TODAY () - 30 && CurrentDate <= TODAY () + 7, 1 )
Add that as a filter to the visual, set to only show when the value is 1.
Create a measure like
Date is visible =
VAR CurrentDate =
SELECTEDVALUE ( 'Date'[Date] )
RETURN
IF ( CurrentDate >= TODAY () - 30 && CurrentDate <= TODAY () + 7, 1 )
Add that as a filter to the visual, set to only show when the value is 1.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 40 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 149 | |
| 105 | |
| 63 | |
| 36 | |
| 36 |