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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

DAX to return Value with the LATEST forecast ID

I am trying to derive the DAX = "Total Latest Forecast" BUT i cannot get the total to sum to 1003 + 3002 +2004 =6009 ....  Instead I get 2004 . Can you help ?

 

Capture.JPG

1 ACCEPTED SOLUTION

Well, there is another solution in this case:

Total Latest Forecast =
SUMX (
    SUMMARIZE (
        Fact_Forecast,
        Fact_Forecast[client],
        "Date", MAX ( Fact_Forecast[fcst cutoffdate] ),
        "Total Forecast", MAX ( Fact_Forecast[Total Forecast] )
    ),
    [Total Forecast]
)

 

m_refaei_0-1627096049096.png

You may redownload the sample file if you want, it is updated.

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

excellent.. thank you.. i see by summaring, you are returing only forecast relevant to the max date.. then sum that expression.. 

 

Exactly, simple and straightforward.

Mohammad_Refaei
Solution Specialist
Solution Specialist

You're alomst there, just need to adjust your filter a little.

Total Latest Forecast = 
CALCULATE (
    SUM ( [Total Forecast] ),
    FILTER ( ALLEXCEPT ( Fact_Forecast, Fact_Forecast[client] ),
    [fcst cutoffdate] = MAX ( [fcst cutoffdate] )
    )
)

You may check this sample file

Anonymous
Not applicable

i notice your total = 2004 instead of 6009.... is there a way where it sums up to 6009

 

Capture.JPG

Well, there is another solution in this case:

Total Latest Forecast =
SUMX (
    SUMMARIZE (
        Fact_Forecast,
        Fact_Forecast[client],
        "Date", MAX ( Fact_Forecast[fcst cutoffdate] ),
        "Total Forecast", MAX ( Fact_Forecast[Total Forecast] )
    ),
    [Total Forecast]
)

 

m_refaei_0-1627096049096.png

You may redownload the sample file if you want, it is updated.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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