Sorry, I'm not sure what you are talking about. I'm self taught at this
time. Just in case there is a deeper problem, the report results were as
expected when we were using a test server. When we moved our data to our
production server we began to have errors. We have ="Page " & [Page] & "
of
" & [Pages] for our reports which has worked well up until we upsized to
SQL
server as well, now we get the #NAME? error there as well.
Duane Hookom said:
I expect your control name is the same as your field name. Change it to
"txtFieldName".
--
Duane Hookom
MS Access MVP
--
I have tried that, as well as other combinations and I still get the
same
result: #NAME? I had another column in my report that was doing the
same
thing, but I only needed the field displayed and not any text added
to it.
I
removed the = sign and the brackets and now it works just fine. I
just
can't
figure out how to add the word "Total:" to my field data.
Thank you for responding.
Lisa
:
Is there a reason you didn't use:
=[fieldname] & " text"
--
Duane Hookom
MS Access MVP
I wrote a report in Access that was working fine. I upsized Access
to
SQL
server and now I link to an SQL table that I open in Access. Now
I get
a
#NAME? error on my report. I checked the field names and all is
fine.
Does
SQL server require different expression syntax? My control source
is
=[fieldname]+" text".