Mitchell5656

New Member
Joined
Jul 1, 2013
Messages
20
This is probably a really simple answer. I have a homework assignment for a Microsoft Office class, and it is requiring me to make the * with the character code 002A. I learned how to make character codes by pressing alt + (some number), but never with any letters. Please let me know how I can do this! Much appreciated.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
That is a hexadecimal code. 2A = 42 in decimal, so using Alt+42 should work.
 
Upvote 0
You can do it in code with chrw(&H002A) or you can use character map but I don't know of any way to do it entering directly with the keyboard. Your class is very strange!
 
Upvote 0
You can do it in code with chrw(&H002A)
For hex numbers equal to, or less than, FF, you can use the Chr function (without the "w") as well...

Chr(&H002A)

Also, in Excel, you can use this formula in a cell (Mitchell5656's method doesn't work in an Excel cell)...

=CHAR(HEX2DEC("002A"))
 
Upvote 0

Forum statistics

Threads
1,215,764
Messages
6,126,749
Members
449,335
Latest member
Tanne

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