How Is it possible to set an eMail-hyperlink to an Excel-cell?
I tryed it with
oAs:Cells[nRow,nCol] := "=HYPERLINK(Test@abc.de)"
OR
oAs:Cells[nRow,nCol] := "=HYPERLINK('Test@abc.de')"
but it doesn't work.
Has anyone a solution?
Thank you
How Is it possible to set an eMail-hyperlink to an Excel-cell?
I tryed it with
oAs:Cells[nRow,nCol] := "=HYPERLINK(Test@abc.de)"
OR
oAs:Cells[nRow,nCol] := "=HYPERLINK('Test@abc.de')"
but it doesn't work.
Has anyone a solution?
Thank you
oSheet:Cells(r,c):Formula := '=HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums")'Sorry, but I get the following error
Fehler Excel.Application:ACTIVESHEET:CELLS 0000 S_OK: _FORMULA
Argumente: { =HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums") }
Aufgerufen von TOLEAUTO:_FORMULA (0)
I tryed it with "Formular" instead of "Formula", but an error also.
Please check this.
Should be cells(r,c) but not cells[r,c]
yes, this is my line with the error above
oAS:Cells(nRow,nCol):Formula := '=HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums")'
oAs is oSheet in my source
I have English installation of Excel.
I used exactly the same syntax and it is working for me without any error and the link is functional.
If your excel installation is German/Spanish, etc. we need to find what is the function name used for "HYPERLINK" in your language.
oExcel := ExcelObj()
oBook := oExcel:WorkBooks:Add()
oSheet := oBook:ActiveSheet
oSheet:Cells( 4,2 ):Value := '=HYPERLINK("http://forums.fivetechsoft.com/", "FiveTech Forums" )'
oExcel:Visible := .t.Thank you very much for your help, but the error are the same.
oExcel := ExcelObj()
oBook := oExcel:WorkBooks:Add()
oSheet := oBook:ActiveSheet
oSheet:Cells( 4,2 ):Value := '=HYPERLINK("http://forums.fivetechsoft.com/", "FiveTech Forums" )'
oExcel:Visible := .t.
I get still the following error
Fehler Excel.Application:WORKBOOKS:ADD:ACTIVESHEET:CELLS 0000 S_OK: _VALUE
Argumente: { =HYPERLINK("http://forums.fivetechsoft.com/", "FiveTech Forums" ) }
Aufgerufen von DEFERROR (87)
Aufgerufen von (b)ERRORSYS (18)
Aufgerufen von TOLEAUTO:_VALUE (0)
function test()
local oExcel, oBook, oSheet
local cListSep, nCountry
? "Start"
oExcel := ExcelObj()
nCountry := oExcel:International[ 1 ]
cListSep := oExcel:International[ 5 ]
? "Country, ListSep", nCountry, cListSep
oBook := oExcel:WorkBooks:Add()
oSheet := oBook:ActiveSheet
oSheet:Cells( 4,2 ):Formula := '=HYPERLINK("http://forums.fivetechsoft.com/" ' + cListSep + ' "FiveTech Forums" )'
oExcel:Visible := .t.
return nilCountry, ListSep
49.00
;
So. Is the above sample working?
Wow ... with ";" it works now with an URL !!!
Thank you very much!
But I wanted to create an eMail-hyperlink to an Excel-cell
'=HYPERLINK("Test@abc.de";"Frank")'
doesn't work for eMail. Can you help me once more?
oSheet:Cells( 4,2 ):Formula := '=HYPERLINK("mailto:gnr@gnr.com" ' + cListSep + ' "G.N.Rao" )'Many thanks to India. Everything now works exactly as I have wished for. Thanks for the effort!
Best Regards