I have an interesting dilemma, and I was wondering if anyone could find out if this is possible. I am creating a CSV file using java and for one of the comma-separated entries for each line is a url.
Example:
item1, item2, item3, http://myurl.com
Initially, when I loaded the CSV file into Excel, it only loaded the text for the URL and did not make it interactive. I was able to solve this by simply linking the entry to this line when creating the file:
= HYPERLINK (" http://myurl.com ")
When Excel loads, the link is clickable and the mouse pointer changes to a hand icon. The only problem is that when you just look at it and not hang a cell, it looks like black text on a white background. Usually, when you see a link, it is blue with an underline, meaning it is available. I would like to have this visual queue, but I'm not sure if there is a way to do this by simply changing my function above using some kind of cell formatting function or something like that.
And yes, I know what conditional formatting is and how to apply it to a cell in Excel. However, this will not work for me, because I just need it to work when the file is uploaded. A file is always created new when the user uploads it, because the content is always changing. Any ideas would be greatly appreciated.
source share