How to dynamically assign X or Y variables in Graph Builder using JSL based on conditions?
Hi JMP Community,
I'm trying to build a dynamic Graph Builder report in JSL where the list of X variables is determined by certain conditions (e.g., flags like includeSite, includeWW, etc.). The goal is to flexibly add or remove columns from the X-axis based on runtime logic.
I’ve tried several approaches, including using:
X( :ColumnName )
X( Column("ColumnName") )
Expr( X(...) )
Substitute(...) ...