The help is wrong. To use GetValue (or SetValue) with Greek characters you need to use the unicode representation. In VBscipt you can get that using the ChrW function, which returns a unicode character when given the ANSI code for the character. For example, alpha is:
Worksheet.GetValue(ChrW(945))
Richard