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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
AutumLeaf
New Member

Using historical values to fill in future periods

Hi community,

 

I have the following requirements:

 

Use prior year values for same month in current year to estimate volume expected. 

Example if I have 12 units in Novemner of 2022, I'd like to show the value (12) under November 2023 as PY

 

The data:

I have two years of data with monthly values.

I have multiple projects and need to show the above for each project and its cohort of items

 

My challenge is scaffolding the transactional data that ends (for now) at august. I need to add future months and then bring in th e values as mentioned above.

 

I hope this is clear, but please ask questions.  Appreciate the help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @AutumLeaf ,

Create a Date Table and connect your Date Table to your Fact table using the date field.

 

PY Value = 
CALCULATE(
    [Total value],
    SAMEPERIODLASTYEAR('Date'[Date])
)
Forecast Value = 
IF(
    ISBLANK([Total value]),
    [PY Value],
    [Total value]
)

 

Output:

vcgaomsft_0-1696214839858.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @AutumLeaf ,

Create a Date Table and connect your Date Table to your Fact table using the date field.

 

PY Value = 
CALCULATE(
    [Total value],
    SAMEPERIODLASTYEAR('Date'[Date])
)
Forecast Value = 
IF(
    ISBLANK([Total value]),
    [PY Value],
    [Total value]
)

 

Output:

vcgaomsft_0-1696214839858.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

lbendlin
Super User
Super User

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors