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