Help using "get format" for making a PDF from a data table
Hello everyone,
I have a script where I am trying to get the format of a column and then apply that to a textbox that is in a table box.
I tried using this col_for=col<< Get Format; but I can't use what it returns in this loop
For Each({col_name}, column_names,
col = Column(dty, col_name);
col_for=(col<< Get Format);
insertinto(col_format_text,col_for);
insertinto(col_width,col<< Get Displ...