Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Filter rows with blanks

This may be a very easy fix, but I'm strugling.   Here is the link to pbix https://1drv.ms/u/s!AumyvtVXEve9jMBCAtpnN8EoNd3dKQ   I just don't want to see rows, where there is no value. Thanks in ...
  • Vvelarde's avatar
    Vvelarde
    7 years ago

    Anonymous

     

    Ok.try with this

     

    1 or 2 =
    IF (
        ISBLANK ( [Sum of Sales] ) && ISBLANK ( [Sum of Sales2] ),
        BLANK (),
        IF ( [Sum of Sales] - [Sum of Sales2] > 0, 1, 2 )
    )