Forum Discussion

julsr's avatar
julsr
Icon for Continued Contributor rankContinued Contributor
1 year ago
Solved

Power BI DAX: Calendar Table Integration Breaking Existing Measure Logic

Hi PowerBI Community, I have an interesting DAX challenge involving the integration of a new Calendar table into an existing model. Here's my scenario: I have three tables: A fact table (TABLE1) ...
  • Ashish_Mathur's avatar
    Ashish_Mathur
    1 year ago

    Hi,

    Revise the measure to

    measure_column = CALCULATE(SUM(Budget[AMOUNT_FIELD]),DATESBETWEEN('Calendar'[Date],MAX('Calendar'[Date])+1,MAXX(ALL('Calendar'),'Calendar'[Date])))

    Hope this helps.