Focal Point
Show/Hide Column

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4251009331

October 06, 2005, 04:11 PM
ktnj
Show/Hide Column
Hello,

I would like to conditionally display or hide a column of alphanumeric data on a report, based on a value returned from a table lookup.

Any information on the best approach to do this task is appreciated.

Thanks to all!
October 06, 2005, 04:25 PM
Prarie
See it this post gives you any ideas
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/
9151058331/r/4251058331#4251058331

This message has been edited. Last edited by: Kerry,
October 06, 2005, 06:04 PM
susannah
ken
use the noprint command
-SET &NOPRINT = IF &SOMETEST EQ 1 THEN ' ' ELSE ' NOPRINT';
TABLE FILE CAR
SUM SEATS
WEIGHT &NOPRINT
BY CAR
END
the &var will be either a blank (weight will print) or the word NOPRINT (weight will be hidden)
October 06, 2005, 06:55 PM
Prarie
That's cool.