Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to insert hyperlink into spreadsheet in CF9.0.1?

New Here ,
Mar 15, 2012 Mar 15, 2012

I was trying to insert a hyperlink into a cell of a spreadsheet like <a href="http://www.adobe.com">Go here</a> but there is no way to convert the cell value to hyperlink. It is not documented anywhere either. Please advise.

Thanks,

Chee

2.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Valorous Hero , Mar 22, 2012 Mar 22, 2012

It is not very obvious. You can create links using a formula and Excel's Hyperlink() function. Not tested, but something like this

     SpreadsheetSetCellFormula(sheet, 'HYPERLINK("http://www.adobe.com", "Go Here")', rowNumber, columnNumber);

Translate
Valorous Hero ,
Mar 22, 2012 Mar 22, 2012

It is not very obvious. You can create links using a formula and Excel's Hyperlink() function. Not tested, but something like this

     SpreadsheetSetCellFormula(sheet, 'HYPERLINK("http://www.adobe.com", "Go Here")', rowNumber, columnNumber);

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 28, 2012 Mar 28, 2012
LATEST

That works! However it does not appear in blue and underline but there is an easy fix with SpreadsheetFormatCell.

Thanks!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources