Oh yeah, almost forgot about that. Though it may not be completely about the paths, IIRC the original problem.Strong Eagle wrote:I don't know for sure... but you might take at look at the hyperlink itself. Does it contain a drive letter? Is the link path absolute or is it relative to the spreadsheet itself? My SWAG is that OO maybe gummed up hyperlink references.
I'm not sure but it is possible that it's because the hyperlinks have spaces in them or are longer than the 8 character name + 3 letter extension. Not very familiar with windows internal workings but sometimes it could be that something like "this folder\this image.jpg" could be translated into "this~1\this~1.jpg" hence the first image is always displayed. I experienced before that thunderbird.exe would always show up as thunde~1.exe in the process manager instead of the long name.sundaymorningstaple wrote:Here's what I've got so far......
All the files are kept in a folder on a 1GB SD card that I carry back & forth from home to the office (like a thumbdrive). The Spreadsheet in in the main folder with around 6 other subfolders (where the images are kept). The drive is 'F' on my home PC. The link, as can be seen in the screenshot upper left frame is ///F:\eBay purchases\Heritage Mint\Heritage Mint - Arizona 'Seal' - front.jpg But when you click the hyperlink it opens up the file F:\eBay purchases\Heritage Mint\Heritage Mint - Alabama 'Crest'EU-0353 - front.jpg
The same file will open with all the other links that are directed to other files within that same folder. Other links to the other folders will all open only the 1st file in the folder.
Needless to say, I've just about recreated the entire spreadsheet tonight but I've yet to add any hyperlinks. Hopefully by saving the old file as a csv file and then closing excel and reopening the programme and opoening the csv file and saving it as a native 2002 document might sort it out. Guess I'll find out tomorrow night. spreadsheet is 30 columns x 488 rows at the moment!
sucks to be you right now.sundaymorningstaple wrote:Normally I'd agree with that, but I've been using this spreadsheet for around a year now in the same manner. The problem only started when I uninstalled OfficeXP and downloaded OpenOffice. The only save options that Open office give are similar to the ones that appear when saving in Excel. The only difference is you don't have the option to save as an "Microsoft Office Excel Workbook (.xls) but have the option to save as a Excel 97/2000/2003 or Excel5.0/95 or it's native format "Open Document File" (.odf). I saved it in the 97/2000/2003 excel format and that must have really screwed up the file itself. As you say, it doesn't actually save it as an Excel file but only emulates it.
Will see this evening after I get back home as start adding hyperlinks again, one at a time! Around 750 hyperlinks!
This is the code to take a text email address and turn it into a hyperlink.nakatago wrote:that sounds VERY useful. could you post the code here for future reference?
Sub HyperAdd()
'
' Converts each text hyperlink selected into a working hyperlink
'
For Each xCell In Selection
If xCell.Value <> "" Then
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:="mailto:" & xCell.Value, TextToDisplay:=xCell.Value
End If
Next xCell
'
'
End Sub
Users browsing this forum: No registered users and 11 guests