Forum Discussion

kmacd8's avatar
kmacd8
Frequent Visitor
7 years ago
Solved

Calculated column 'zero' value not being recognized?

Hi community, 

I have what I assume is a simple question regarding a cell in my table not being recognized as a zero. 

I have a calculated column, formatted to be a fixed decimal number data-type, and a decimal number. The calculated column has several distinct values, one of which is showing as 0.00 (which is calculated correctly). However, when I apply a visual filter to exlude items that are equal to zero - I am still getting the "0.00" showing up in my report? 

Any help is much appreciated.Visualization showing zeros despite my filter?Calculated column values from table-viewCalculated column.

  • Hi,

    Try this calculated column formula

    =IF(your calculated column formula=0,BLANK(),your calculated column formula)

11 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi ,

     

    Are the results the same when 0.00 value is inputed in the "is not" field

    • kmacd8's avatar
      kmacd8
      Frequent Visitor

      You mean as the 'is' field? The original filter is setup as 'is not' - 

      When I change the filter to be 'is' - yes, I lose the zero's from the visualization... I'm sorry if I am misunderstanding your follow up...

       

    • kmacd8's avatar
      kmacd8
      Frequent Visitor

      sorry - I understand now. Yes - when I input 0.00 as the filtered value - it still has the same result. 

      • elJukes's avatar
        elJukes
        Helper I

        What happens if you wrap your calculation in a ROUND and set it to two decimal places, then try filtering on 0.00?

  • Hi,

    Try this calculated column formula

    =IF(your calculated column formula=0,BLANK(),your calculated column formula)