Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,Is it possible to hide a row in a table when a value of one column is superior to another?I created an app to forecast the evolution of the space used in few drives.I want to hide all rows where the space used is less than the space max.
You can hide rows per se. But you could not generate the rows using a calculated dimension, something like:
=Aggr(if(sum(used) => sum(spacemax), DriveName), DriveName)
-Rob