Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to use an inline load to create inout fields, but I do not know how to map against my table with the data in. The inline load is additional fields required for input against the main table. eg
Table A
Division,
Person,
Appointment Date
I want to be able to add the following as input fields but they are not in Table A.
Inputfield Cancelled;
Inputfield Comments;
Inputfield Reason;
I need these to be a line for line match in Table A. So if there are 50 lines in Table A, I need to be able to have 50 lines I can use the input fields against.
Thanks 🙂
Something like this should work:
Inputfield Cancelled;
Inputfield Comments;
Inputfield Reason;
load 'F1' & recno() as Division,
'F2' & recno() as Person,
'F3' & recno() as [Appointment Date],
'' as Cancelled,
'' as Comments,
'' as Reason
autogenerate 50;
Thank-you.
That worked.