View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
isabelle isabelle is offline
external usenet poster
 
Posts: 99
Default reverse of CHR function

hi, Art,

MsgBox Asc("A")

isabelle

Le 2016-06-24 Ã* 07:55, c1802362 a écrit :
Good morning all,

Returning a character using the CHR function is simple:

MsgBox Chr(65) returns 'A'

However, is there a reverse CHR function that would do the following?

MsgBox RevChr("A") returns 65

Art