How can I remove zeroes from a table?

How can I remove zeroes from a table?

measterbromeasterbro Posts: 33Questions: 9Answers: 0

Is there a way to replace single zero values with either null or space?

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    Hi @measterbro ,

    You can use columns.render to manipulate the data in a column, see the fifth example on that page. You can check in there for your zeros, and return back the empty string.

    Cheers,

    Colin

  • measterbrookmeasterbrook Posts: 14Questions: 5Answers: 0

    I don't see anything in the fifth example on the columns.render page that would allow me to replace zeroes with an empty string.

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    If you look at that fifth example again, you'll see it's manipulating the data for that column, which is exactly what you want to do...

This discussion has been closed.