Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Display previous months on the X axis

Hi Team, In continuation with post Solved: Re: Display 6 months on the X axis - Microsoft Fabric Community , I have achieved the requirement as suggested by danextian . However, on the same page th...
  • danextian's avatar
    danextian
    1 year ago

    You can create another measure to establish a virtual relationship between the disconnected table and the related dates table using TREATAS.

    Agg selected month =
    CALCULATE (
        [Sum of Value],
        -- Applies the [Sum of Value] measure within the specified filter context.
        KEEPFILTERS (
            -- Ensures existing filters on the DatesTable remain in place while applying the TREATAS filter.
            TREATAS (
                VALUES ( DisconnectedDatesTable[Month and Year] ),
                -- Retrieves unique values from the DisconnectedDatesTable[Month and Year].
                DatesTable[Month and Year] -- Maps the values from the disconnected table to the active DatesTable[Month and Year] column.
            )
        )
    )