CTRL A in a 128 barcode

FidgetSS

New Member
Joined
Feb 16, 2011
Messages
3
Is there a way to convert CTRL A in excel so that the output is a 128 bar code that is printable in excel?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Welcome to the Board!

You're really not giving a whole lot to go on. Do you want to reassign CTRL+A to a code shortcut? If so I'd consider using an unreserved shortcut, otherwise CTRL+A won't work.

There are free barcode fonts you can use to create barcodes from a string: http://www.barcodesinc.com/free-barcode-font/

If you post back with more details it'll help.
 
Upvote 0
Welcome to the Board!

You're really not giving a whole lot to go on. Do you want to reassign CTRL+A to a code shortcut? If so I'd consider using an unreserved shortcut, otherwise CTRL+A won't work.

There are free barcode fonts you can use to create barcodes from a string: http://www.barcodesinc.com/free-barcode-font/

If you post back with more details it'll help.

What i am trying to do is convert the command CTRL A into a scan-able bar code so that instead of hitting CTRL and A on a motorola Hand Held computer i want to scan it with the laser scanner instead
 
Upvote 0
ctrl A is ascii character 1. so you need to use chr(1) in your string
 
Upvote 0
are you implementing the code from scratch? just wondering cos i did one a while ago in Code128. much better than a lot of others
 
Upvote 0
so would i do something like

(1) in a1 and in b1 =("*"&A1&"*") the * are start and end strings for the Hand Held to know when to start and to end

I have a code128 font installed BTW B1 would be that font
 
Last edited:
Upvote 0
theres more to it than that. you have to calculate the checksumn etc or the code wont scan. its not just a font change.

so if you where trying to render "0923433"<ctrl>A
you would the string would be

mybarstring="0923433" & chr(1)

then get the checksum and starting code and render the barcode
 
Upvote 0

Forum statistics

Threads
1,221,905
Messages
6,162,770
Members
451,786
Latest member
CALEB23

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