Barcoding in Access

TKT_BEER

New Member
Joined
Dec 22, 2003
Messages
38
Hi everybody! need help on the following...
I have a string of numbers.. 74103-250-03 I need these numbers to appear in a report as barcode.. I do have the barcode font but this barcode font needs an asterisk on the beggining and ending of the string.. like so: *74103-250-03* for the scanner to read them correctly.

Question I have is: What do I need to do so the asterisks get added to the field automatically? this would be in done on a report and not a form.

(y)
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Let's say your barcode string is called BarString. In the query that underlies the report, build this calculated field:
MyBarcode:="*"&[BarString]&"*"
Use MyBarcode where you need the barcode to appear in the report.

Denis
 
Upvote 0
also, check the operating manual that came with your barcode scanner - i have a symbol cobra scanner that can be programmed such that it will add a character or keystroke(s) before and/or after the barcode that is scanned


hth
kevin
 
Upvote 0

Forum statistics

Threads
1,221,813
Messages
6,162,117
Members
451,743
Latest member
matt3388

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top