Forum Discussion

Sugumaran31's avatar
Sugumaran31
Icon for Helper I rankHelper I
2 years ago
Solved

How to Remove blank data in matrix table

How to Remove blank data in matrix table. I need only show the value please refer to the image below    
  • Daniel29195's avatar
    Daniel29195
    2 years ago

    Sugumaran31  for sure.

    so i think  in the return of the growth % measure , you could write something like this . 

     

     

    growth % = 

     

    var numerator = [growth] 

    var denominator = [sales PYD]

    return

    switch ( 

    true() ,

    isblank( numerator) ,  blank() ,  divide ( numerator , denominator ) ) 

     

    let me know if this helps.