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

Top Solution Authors