This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher 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.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 54 | |
| 46 | |
| 26 | |
| 24 |