I want to hide a column based on the filter used - not 'hide when printed' all the time.
I'm using the following calculated column formula which returns a blank column, but I prefer not printing the column at all. Is this possible?
-Todd
IF
(
FILTERNAME()="ALL BULK - BLK, NSB, OSB",
" ",
{Minimum Level 1} / {Alt Factor 1}
)
When it's true, I get a blank column. When it's false, I get the result of the formula.
I prefer getting no column if true and the result if false.