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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Selded
Helper III
Helper III

Forecast Figures between dates

I need help with a measure that will return one forecast figure from my forecast table based on budgetforecastfrom and budgetforecastto dates. i filter the forecast figures based on the kpiname. Below is a snip of how my forecast table looks like.  i have added a snip of my expected results .

 

Forecast Table

Selded_2-1594717298808.png

 

 

Expected results.

Selded_1-1594717154017.png

 

Thanks for the help

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @Selded ,

 

Create a new Table

 

Table 4 =
SUMMARIZE (
    'Table',
    'Table'[BudgetForecastFrom],
    'Table'[BudgetForecastID],
    'Table'[KPI Name],
    "Period Forecast Date", CALCULATE (
        MAX ( 'Table'[Period Forecast] )
    )
)

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

Did I answer your question? Mark my post as a solution!

 

View solution in original post

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hi @Selded ,

 

Create a new Table

 

Table 4 =
SUMMARIZE (
    'Table',
    'Table'[BudgetForecastFrom],
    'Table'[BudgetForecastID],
    'Table'[KPI Name],
    "Period Forecast Date", CALCULATE (
        MAX ( 'Table'[Period Forecast] )
    )
)

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

Did I answer your question? Mark my post as a solution!

 

@harshnathani 

 

Thank you.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors