R
Russ V
Hi.
I'm pretty new to ADP but have been working in Access for many years.
I've published a database to an MDF file and can get a funtion to
search using the following code. The domain login is xxx'd.
SELECT [Unit Name], datadata, [Department Name], [Remedy Name],
[SAP Name], [Employee SAP], [SAP Status], [SAP Dept], [SAP Hire], [SAP
Term],
[IsTerm'd?]
FROM [xxx\xxx].[Nextel Subscribers Temp]
WHERE ([Unit Name] LIKE N'%' + @Search1 + N'%')
A pop-up appears when run. Typing in "russ" gives all of the people
that have russ in the name.
Now I want to change the parm @Search1 for the form data. The
following line of code does not work. I want the function to look at
the value in form MenuSearch and get the data in text0
WHERE ([Unit Name] LIKE N'%' + N'[forms]![menusearch]![text0]' +
N'%')
My goal is to build a web page that an individual can put in several
qualifiers and submit parms for lookup. I already have the web site
set up and the views work.
Thanks in advance
I'm pretty new to ADP but have been working in Access for many years.
I've published a database to an MDF file and can get a funtion to
search using the following code. The domain login is xxx'd.
SELECT [Unit Name], datadata, [Department Name], [Remedy Name],
[SAP Name], [Employee SAP], [SAP Status], [SAP Dept], [SAP Hire], [SAP
Term],
[IsTerm'd?]
FROM [xxx\xxx].[Nextel Subscribers Temp]
WHERE ([Unit Name] LIKE N'%' + @Search1 + N'%')
A pop-up appears when run. Typing in "russ" gives all of the people
that have russ in the name.
Now I want to change the parm @Search1 for the form data. The
following line of code does not work. I want the function to look at
the value in form MenuSearch and get the data in text0
WHERE ([Unit Name] LIKE N'%' + N'[forms]![menusearch]![text0]' +
N'%')
My goal is to build a web page that an individual can put in several
qualifiers and submit parms for lookup. I already have the web site
set up and the views work.
Thanks in advance