Lists

How would I add something to a list after doing a DBLOOKUP. I have a dialog box. That uses a dblookup for choices. But there is a default choice that always needs to be returned. I need to figure out how to add it to the list that is returned. Inside the dialog list field.

Example Project_Number dialog field has the following code:

@DbLookup(“”:“NoCache”;“”:“”;“MachineProjLookup”; Call_CompanyID; “Project_Number”)

returns D2E001;E3C044 but for every dblookup i want it to return E4443 all the time:? So it would need to return D2E001; E3C044;E4443. How would i always add this number to the list?

Subject: Lists

a := @dblookup;b := a : “E4443”;

basically just append the value to the list…

Subject: RE: Lists

Thank you very much. This works…