how do I use an Input Mask to add extra caracters to sequence

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am trying to change the following sequence of caracters obtained from an
underlying query to include a * at either end. I need to do this within a
report only as this will then be used to generate a barcode.
 
Damian,
Create a claculated field (ex. txtYourTextField) on the report...
= "*" & [YourTextField] & "*"
 
You need to FORMAT the values displayed in your report; an input mask
controls data entry (typically in forms) only on new records.

Try: Format('*'+[myField]+'*')

-Ed
 
Hi

Set this is the control source of the field in the report

="*" & [QueryFieldName] & "*"

Hope this helps

--
Wayne
Manchester, England.
Enjoy whatever it is you do
Scusate,ma il mio Inglese fa schiffo :-)
Percio se non ci siamo capiti, mi mandate un
messagio e provero di spiegarmi meglio.
 
ooops. just noticed I gave the same answer as Al Campagna, just ignor my
answer.

Sorry - the other answers didn't show up at 1st.


--
Wayne
Manchester, England.
Enjoy whatever it is you do
Scusate,ma il mio Inglese fa schiffo :-)
Percio se non ci siamo capiti, mi mandate un
messagio e provero di spiegarmi meglio.
 

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

Similar Threads

use of * caracter in rst.Open strSQL 2
xml using reading caracters 3
input mask for phone number 2
input mask !!!! 3
Custom, Automated Input Masks 2
Required Fields? Input Masks? 4
Input Mask 1
Input masks 4

Back
Top