How can I remove zeroes from a table?
How can I remove zeroes from a table?
measterbro
Posts: 33Questions: 9Answers: 0
Is there a way to replace single zero values with either null or space?
This discussion has been closed.
Answers
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
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.
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...