Hyperlinks can be added in the following way using VBA:
```
ws.Hyperlinks.Add Anchor:=r, Address:="", SubAddress:=""
```
I.e. without any target. Note that such hyperlinks can't be created from the Add Hyperlinks dialog in excel.
When a document has one such hyperlink, FormulaParser crashes with null argument exception.
```
ws.Hyperlinks.Add Anchor:=r, Address:="", SubAddress:=""
```
I.e. without any target. Note that such hyperlinks can't be created from the Add Hyperlinks dialog in excel.
When a document has one such hyperlink, FormulaParser crashes with null argument exception.