On Tue, 2005-02-15 at 12:58, Ennio-Sr wrote: > * Jonathon Blake <[EMAIL PROTECTED]> [130205, 17:21]: [snip] > > I need a visual display of each glyph, and the Unicode #. [snip] > > Spreadsheet cells either are "= Char(cell_number)" or [snip]
In the Linux versions that I have tested (1.1.4 and 1.9.77) and according to the help file, the Calc sheet function CHAR only works on ASCII characters i.e. up to 255. Interestingly the OOo BASIC function chr does work for unicode numbers greater than 255. Thus one can have something like: function myChar(n) myChar = chr(n) end function But calling this function from a spreadsheet a thousand times is very slow. Thanks, Ian Laurenson --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
