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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
This is a different approach, but I believe it does what you need. It return blank until the end of the current quarter is reached.
Sale Not This Quarter =
VAR thisquarterstart =
DATE ( YEAR ( TODAY () ), FLOOR ( MONTH ( TODAY () ) - 1, 3 ) + 1, 1 )
RETURN
IF ( MAX ( 'Date'[Date] ) < thisquarterstart, [Total Sales], BLANK () )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
For Example: It's July right now. I want sales data in July to be excluded, and sales data in August to be excluded, and sales data in september to be excluded until the sales data in October comes in.