Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

PARALLELPERIOD function when there's period missing

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?

 

CALCULATE(SUM('Details'[accrual]),PARALLELPERIOD('Details'[Report date],-1,MONTH))
1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

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] ) )

 

relation.jpg

 

Then, create your measure like so:

Measure 2 =
CALCULATE (
    SUM ( 'Details'[accrual] ),
    PARALLELPERIOD ( 'Calendar'[Date], -1, MONTH )
)

measure.PNG

 

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.

View solution in original post

2 REPLIES 2
Icey
Community Support
Community Support

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] ) )

 

relation.jpg

 

Then, create your measure like so:

Measure 2 =
CALCULATE (
    SUM ( 'Details'[accrual] ),
    PARALLELPERIOD ( 'Calendar'[Date], -1, MONTH )
)

measure.PNG

 

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.

Greg_Deckler
Super User
Super User

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...


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.