CONCATENATE

  • Thread starter Thread starter Guest
  • Start date Start date
Sorry guess I hit send to soon..

I am getting and "Compile Error Sub or function not define"
message.

Here is what I'm trying to get to work.
[thold1] = CONCATENATE([cbcustid], "*")

Who do I define this? thold1 and cbcustid are both fields on my
form.

The help section didn't show me how to define this and I'm not much
on VB, or even Access as far as that goes. Thanks Mark

Mark,
Concatenate is not an Access function.
You really don't need it in Access anyway.
In VBA:
[thold1] =[cbcustid] & "*")

Or .. as the control source of [thold1]:
= [cbcustid] & "*"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top