I am trying to change a large listing in excel to hyperlink to a location I have specified. The issue is that the "location" will need to slightly change as well. The url/hyperlink ends with a =
+ ID
example url:
http://.../.../.../Display=Search&SearchFld=ID&DisplayType=Simple&DisplayValue=13
Excel Listing
A B F
A1 ID Subject =HYPERLINK("http://.../.../.../Display=Search&SearchFld=ID&DisplayType=Simple&DisplayValue=" & A2, F2)
A2 13 E Service =HYPERLINK("http://.../.../.../Display=Search&SearchFld=ID&DisplayType=Simple&DisplayValue=" & A3, F3)
A3 39 AD Request ....
A4 99 Request Email ....
..etc
My issue is that when I add this formula, it creates a 0
inside the cell when What I want is it to show Subject
hyperlinked, E Service
hyperlinked and so forth.
So column F should show column B's text but hyperlink.
0
as well – narue1992