Convert ASCII to actual value

Mgtrom

New Member
Joined
Apr 26, 2017
Messages
3
I am reading a digital scale value into Excel but the value comes in as a series of symbols and not the numeric values displayed on the scale.

Something like: ]@@byd"@; etc.

From what I can tell this is some sort of ASCII format exported by the scale display. Is there a way to convert this to the numeric value
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
You can use =CODE(), but it seems it works only 1 character at a time.
 
Upvote 0
However, you could do something like this:

=CODE(MID($A$2,COLUMNS($A$1:A1),1))

and drag it to the right across 9 columns. Or replace COLUMNS($A$1:A1) with ROWS($A$1:A1) and drag it down.
 
Last edited:
Upvote 0
You can use =CODE(), but it seems it works only 1 character at a time.

Yes, you are correct, it only works on 1 character at a time perhaps use Text2Columns to break them out and "code" each cell- then combine them>
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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