View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
c1802362[_2_] c1802362[_2_] is offline
external usenet poster
 
Posts: 65
Default reverse of CHR function

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