char(39)
James Hageman wrote:
In the following code I want the variable vwhere to be:
WHERE manufacturerid = 'string'
so when it is used in line 4 the single quotes are present.
what do I do in line 3 to put single quotes around .vman?
1 SET VAR vwhere TEXT 2 --vman gets set in another form here 3 SET VAR vwhere = ('WHERE manufacturerid = ' + .vman) 4 EDIT USING edit_view &vwhere

