Invoice Table Number!

B

Bob

I have a Invoice Table number that appears on my Report as the Invoice
Number is there anyway I can have the words (Invoice No:) In front of the
Number, it has a source Control "InvoiceNo"



Thanks in advance.........Bob Vance
 
A

Al Camp

Bob,
Why aren't you just placing a label next to the InvoiceNo with a caption of
"InvoiceNo:" (without the quotes)
That would be the usual way...

You could concatenate it by setting the ControlSource of your InvoiceNo to
= "Invoice No: " & [InvoiceNo]
Make sure you rename that field txtInvoiceNo, not InvoiceNo. A calculated field can not
have the same name as a legitimate field.
 
B

Bob

Thanks Al. The reason for no caption is when the numbers get longer this
will grow with it, So I would have to Guess where to put the caption for
later on...Bob

Al Camp said:
Bob,
Why aren't you just placing a label next to the InvoiceNo with a caption
of "InvoiceNo:" (without the quotes)
That would be the usual way...

You could concatenate it by setting the ControlSource of your InvoiceNo
to
= "Invoice No: " & [InvoiceNo]
Make sure you rename that field txtInvoiceNo, not InvoiceNo. A calculated
field can not have the same name as a legitimate field.

--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

Bob said:
I have a Invoice Table number that appears on my Report as the Invoice
Number is there anyway I can have the words (Invoice No:) In front of the
Number, it has a source Control "InvoiceNo"



Thanks in advance.........Bob Vance
 
B

Bob

Al I just copied this into source Control and it worked:
= "Invoice No: " & [InvoiceNo]
Thanks...Bob

Bob said:
Thanks Al. The reason for no caption is when the numbers get longer this
will grow with it, So I would have to Guess where to put the caption for
later on...Bob

Al Camp said:
Bob,
Why aren't you just placing a label next to the InvoiceNo with a
caption of "InvoiceNo:" (without the quotes)
That would be the usual way...

You could concatenate it by setting the ControlSource of your InvoiceNo
to
= "Invoice No: " & [InvoiceNo]
Make sure you rename that field txtInvoiceNo, not InvoiceNo. A
calculated field can not have the same name as a legitimate field.

--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

Bob said:
I have a Invoice Table number that appears on my Report as the Invoice
Number is there anyway I can have the words (Invoice No:) In front of
the Number, it has a source Control "InvoiceNo"



Thanks in advance.........Bob Vance
 

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