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
Hey Experts, Good Afternoon!
I need to create a filter where I can select either next month and then next 3 months, for example...
Todays date is 21/09/2023 to next month should show Octobers data, Next 3 months should show October, November, December.
See example table below...
| Name | Date |
| AA | 21/10/2023 |
| BB | 21/11/2023 |
| CC | 21/12/2023 |
| DD | 25/11/2023 |
Many Thanks,
Taylor
Solved! Go to Solution.
Hi @Ttaylor9870,
You can create a measure formula to use on 'visual level filter' to compare current row context date and system date to return flag, then you can use this flag as condition to filter correspond records based on current date.
flag =
VAR currDate =
MAX ( Table[Date] )
VAR _endDate =
DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) + 3, DAY ( TODAY () ) )
RETURN
IF ( currDate >= TODAY () && currDate <= _endDate, "Y", "N" )
Applying a measure filter in Power BI - SQLBI
Regsards,
Xiaoxin Sheng
Use the filter pane.
Hi @Ttaylor9870,
You can create a measure formula to use on 'visual level filter' to compare current row context date and system date to return flag, then you can use this flag as condition to filter correspond records based on current date.
flag =
VAR currDate =
MAX ( Table[Date] )
VAR _endDate =
DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) + 3, DAY ( TODAY () ) )
RETURN
IF ( currDate >= TODAY () && currDate <= _endDate, "Y", "N" )
Applying a measure filter in Power BI - SQLBI
Regsards,
Xiaoxin Sheng
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 13 | |
| 11 |