Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

Metric view with custom column

 

Hi, is it possible to achieve this view using metric ?

 

1 Reply

  • v-kkf-msft's avatar
    v-kkf-msft
    Icon for Community Support rankCommunity Support

    Hi Anonymous ,

     

    I could only implement a similar matrix using the following measures.

     

    M_Total = 
    IF (
        ISFILTERED ( 'Table'[Part] ),
        SUM ( 'Table'[Total] ),
        MAX ( 'Table'[Final] )
    )
    M_Date = 
    IF (
        ISFILTERED ( 'Table'[Part] ),
        MAX ( 'Table'[Date] ),
        MAX ( 'Table'[Final] )
    )
    M_Pay = 
    IF (
        ISFILTERED ( 'Table'[Part] ),
        SUM ( 'Table'[Pay] ),
        MAX ( 'Table'[Final] )
    )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.