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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I need to get the answer for this ASAP.
I stuck in creating current, next, & next tow quarter fields in powerbi desktop, could you please give me an idea how to create these fields using dax or any other way in powerbi.
Thanks
Mohammad
Not clear with your requirement... If your intention is to get some values for whole current Q, Next Q and next 2 Q, you can create them using PARAELLPERIOD as CALCULATE filter. let's say you want to get [sales] then
(I assumed you have compleat Date table)
CurrentQ = CALCULATE([sales],PARAELLPERIOD(date[date],0,QUARTER) // Current quater sales total
NextQ = CALCULATE([sales],PARAELLPERIOD(date[date],+1,QUARTER)
Next2Q = NextQ +CALCULATE([sales],PARAELLPERIOD(date[date],+2,QUARTER)
Hope this helps you. Thanks
Please mark as solution if this solved your issue.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.