Hi ,
I understand from the documentation that the ChrW function supports a value up to 65535. So this code works fine:
And this one gives an error:
So, how do I insert a Unicode number higher than the limit of the ChrW function - if possible?
Kind regards
Erik
I understand from the documentation that the ChrW function supports a value up to 65535. So this code works fine:
Code:
Range("C2") = ChrW(9000)
And this one gives an error:
Code:
Range("C2") = ChrW(128247)
So, how do I insert a Unicode number higher than the limit of the ChrW function - if possible?
Kind regards
Erik