Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

In one side table, "Adding a Calculated Column from the many side table

Hi all
The provided Power BI data model includes 'Date' and 'Stores' as dimension tables and 'Managers' as a fact table, linked by a one-to-many relationship.

Can you help me  to create a calculated column in the 'Stores' table to display the latest manager entry from the 'Managers' table, as depicted in the illustration.

Thanks in advance 
regards 

  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi  Anonymous ,

     

    Here are the steps you can follow:

    1. Create calculated column.

    Mg =
    var _date=
    MAXX(
        FILTER(ALL('Managers'),
        'Managers'[Stores]=EARLIER('Stores'[Stores])),[Date])
    return
    MAXX(
        FILTER(ALL('Managers'),
        'Managers'[Stores]=EARLIER('Stores'[Stores])&&'Managers'[Date]=_date),'Managers'[Manager])

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi  Anonymous ,

     

    Here are the steps you can follow:

    1. Create calculated column.

    Mg =
    var _date=
    MAXX(
        FILTER(ALL('Managers'),
        'Managers'[Stores]=EARLIER('Stores'[Stores])),[Date])
    return
    MAXX(
        FILTER(ALL('Managers'),
        'Managers'[Stores]=EARLIER('Stores'[Stores])&&'Managers'[Date]=_date),'Managers'[Manager])

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly