I`ll try to work with Excel using C#.
I need to add a hyperlink, which using the value of another cell. If this value in document is changed, hyperlink also must change.
This code:
curSheet.Hyperlinks.Add(curSheet.get_Range("c1"), "https://www.google.ru/?q=" + curSheet.get_Range("b1").Value)
will give me a fixed link. How can I create a dynamic link, which contain a sublink to cell, not cell value?