On Feb 25, 11:23 pm, John Machin <sjmac...@lexicon.net> wrote:
> You type into your sourcefile editor exactly what you would type into Excel
> or OpenOffice Calc or Gnumeric to achieve what you want to do. If you have
> trouble getting manually inserted hyperlinks to do what you want to do,
> google is your friend. E.g. google("excel hyperlink function examples") and
> click on the first result.
Hey John,
Thanks for the reply i already tried doing that, as Google specifies
the formula for the hyperlink turns out to be:
=HYPERLINK("[book1.xls]Sheet2!A1","CLICK HERE")
which i write in my python code as:
sheet.write(100,1,xlwt.Formula('HYPERLINK("[book1.xls]sheet2!
A1";"CLICK")'))
But in this case book1.xls gets open and says Refrence is not valid.
ashu_104 <ashu.lo...@gmail.com> wrote:
>> Thanks for the reply i already tried doing that,
>> as Google specifies the formula for the hyperlink
>> turns out to be:
>>
>> =HYPERLINK("[book1.xls]Sheet2!A1","CLICK HERE")
>>
>> which i write in my python code as:
>> sheet.write(100,1,xlwt.Formula('HYPERLINK("[book1.xls]sheet2!
>> A1";"CLICK")'))
Why did you switch from a comma to a semicolon to separate the parameters?
John Y.
John Machin wrote:
>> > You type into your sourcefile editor exactly what
>> > you would type into Excel
ashu_104 wrote:
>> Thanks for the reply i already tried doing that,
>> as Google specifies the formula for the hyperlink
>> turns out to be:
>>
>> =HYPERLINK("[book1.xls]Sheet2!A1","CLICK HERE")
>>
>> which i write in my python code as:
>> sheet.write(100,1,xlwt.Formula('HYPERLINK("[book1.xls]sheet2!
>> A1";"CLICK")'))Why did you switch from a comma to a semicolon to separate the parameters?