Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Count blanks in two different measures

Hi All,   I've searched and don't think this has been answered before.  I have 2 new measures that use 'countblank' to identify how many blanks there are in each.  I'm now trying to create one that...
  • Samarth_18's avatar
    Samarth_18
    4 years ago

    Anonymous , You can create a column with below code and then take a sum of new column:-

    Column =
    IF ( ISBLANK ( COALESCE ( 'Table'[Pred], 'Table'[Succ] ) ), 1, 0 )

    Output:-