tags:

views:

1457

answers:

1

Hi,

How can I create the "Infinite" symbol in an excel sheet programmatically?

Preferably from Java...but other tips are also welcome.

Thx.

+7  A: 

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.

Tomalak