adding tekst

J

Jean-Paul

I have this entryfield on my report.

I use a recordfield to display it's data

ABO_Stage

When I change it into

="Bedrijf: " & [ABO_Stage]

I get a # error

What is wrong with the syntax?

Thanks
 
M

Marshall Barton

Jean-Paul said:
I have this entryfield on my report.

I use a recordfield to display it's data

ABO_Stage

When I change it into

="Bedrijf: " & [ABO_Stage]

I get a # error

What is wrong with the syntax?


Nothing is wrong with the syntax. The problem is that when
you changed it from a bound text box to an expression (by
using =), you forgot to change the name of the text box to
something other than ABO_Stage. The way you have it, the
expression refers to the text box and the expression goes
around in circles trying to evaluate itself.
 
J

Jean-Paul

Perfect... problem solved
Thanks

Marshall said:
Jean-Paul said:
I have this entryfield on my report.

I use a recordfield to display it's data

ABO_Stage

When I change it into

="Bedrijf: " & [ABO_Stage]

I get a # error

What is wrong with the syntax?


Nothing is wrong with the syntax. The problem is that when
you changed it from a bound text box to an expression (by
using =), you forgot to change the name of the text box to
something other than ABO_Stage. The way you have it, the
expression refers to the text box and the expression goes
around in circles trying to evaluate itself.
 

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

Top