Hello,
I am creating a table that displays values stored in fields that are named in a certain sequential way. I would like to write a single formula for that will evaluate to the field name that I need to pull.
For example, in cell (1,1) I need to display field S.P.M.1.1; in cell (1,2) I need to display field S.P.M.1.2; etc.
If this is not possible, is there a way to accomplish this with a view? All these fields are associated with a single document.
Thanks,
Brandon.
Subject: RE: Need to get table row and column numbers programmatically (not @GetFocusTable)
This sounds like a job for passthru HTML. Do not put a table on your form. Just put one computed text object and in there, use
and related tags to render the whole table in HTML. Use an
@For loop to iterate thru the row numbers and
@GetField – with a calculated fieldname – to read the fields one by one and insert their text into the table.
Subject: RE: Need to get table row and column numbers programmatically (not @GetFocusTable)
Thank you, this worked!
(This is causing some problems with styling the table like the rest of the things in my application, but that is a smaller problem.)
Thanks,
Brandon.