0

Is there an n such that Chr(n) in Word VBA gives the greater than or equal to sign? Like Chr(150) is an m-dash (subtraction sign)?

khargushoghli
  • 55
  • 1
  • 1
  • 12
  • Apparently `>=` is not in the ASCII table. See [this question](http://stackoverflow.com/questions/12140003/ascii-code-for-less-than-or-equal-to) – tospig Feb 09 '15 at 21:42
  • @tospig ASCII is not relevant to VBA. `Chr()` uses the current ANSI codepage, which would be Windows-1252 or the like. `ChrW()` uses Unicode/UTF-16 code-units. – Tom Blodget Feb 10 '15 at 03:36

1 Answers1

0

The character value code for greater than or equal is reached with ChrW, which accesses the Unicode character set, and the value is ChrW(&H2265)

JRQ
  • 545
  • 4
  • 17