Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm using Parallelperiod to get previous value and it's working correctly for most except those that don't have value existed for certain period. For example if Company A has sales both in March and April, it will work fine. But if company A only has sales in March and the filter is set for April, March sales will show as blank.
My guess is that the function couldn't find April, so it doesn't know what's the previous period to look for.
Is there any suggestion for my struggle?
Solved! Go to Solution.
Hi @Anonymous ,
It is needed to create a Calendar table, and then create relationships between 'Details' table and 'Calendar' table.
Calendar = CALENDAR ( MIN ( Details[Report date] ), MAX ( Details[Report date] ) )
Then, create your measure like so:
Measure 2 =
CALCULATE (
SUM ( 'Details'[accrual] ),
PARALLELPERIOD ( 'Calendar'[Date], -1, MONTH )
)
BTW, .pbix file attached.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
It is needed to create a Calendar table, and then create relationships between 'Details' table and 'Calendar' table.
Calendar = CALENDAR ( MIN ( Details[Report date] ), MAX ( Details[Report date] ) )
Then, create your measure like so:
Measure 2 =
CALCULATE (
SUM ( 'Details'[accrual] ),
PARALLELPERIOD ( 'Calendar'[Date], -1, MONTH )
)
BTW, .pbix file attached.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
See if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
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!