Forum Discussion

Maahmohammed's avatar
Maahmohammed
Icon for Helper I rankHelper I
1 year ago
Solved

Missed Row

I have a table having a budget for each account No.. And i have another table including the actual expenses for each account no. in each month. We will find the the acctual expebses table doesn't inc...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Thanks for the reply from GilbertQ, please allow me to provide another insight.
    Hi Maahmohammed ,

    The test dataset is as follows.


    Create a measure to mark the missed accounts no.

    Missed Account NO. = 
    IF (
        SUM ( 'Actual expenses table'[Actual Expnses] ) = BLANK (),
        MAX ( 'Table'[Account No] ),
        BLANK ()
    )


    Adding this measure to the table visual resulted in the following.

     


    Please see the attached pbix for reference.

    Best Regards,
    Dengliang Li

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