Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Hide/Remove row based on criteria

I am working on a change management dashboard for my company, and I am trying to create an automated process to hide/remove rows once all of the tasks related to the change have a complete status AND...
  • Cmcmahan's avatar
    Cmcmahan
    7 years ago

    You shouldn't need to use VALUE with the measures.  That just converts strings to numerical values.  If the status number measure actually returns "4" instead of 4, you can add quotations around the comparison value to keep it simple.

     

    ECMFilter2 =
    IF (
    SELECTEDVALUE('Project1)'[EffectiveDate]) < TODAY() &&
    [ME Status Number] = 4 &&
    [QE Status Number] = 4 &&
    [MR Status Number] = 4 &&
    [PC Status Number] = 4 &&
    [TL Status Number] = 4,
    TRUE(),
    FALSE()
    )

    Nothing's changed for the date conditional.  Does it still return true in all instances?