Hi,
How can I create the "Infinite" symbol in an excel sheet programmatically?
Preferably from Java...but other tips are also welcome.
Thx.
Hi,
How can I create the "Infinite" symbol in an excel sheet programmatically?
Preferably from Java...but other tips are also welcome.
Thx.
The "Infinity Symbol" character is in codepoint 0x221E in unicode. The VBA code to do it would be this:
ActiveSheet.Range("A1").Value = ChrW(&h221E)
Hope this helps.