When a specific cell is clicked, I need to run a function. The function is:
HighlightOnWebsite(url As String, phrase As String)
Basically, this function loads a Web Browser Control, brings up the requested page, and highlights the required phrases. The function works more ore less fine.
What I can't figure out is how to get certain cells to call this function.
Lets say each row has 3 cells which contain the following information:
url of some document | some important phrase | will contain call to function
Now, I need to scan the spreadsheet and in the third column of each row, make a clickable cell which calls a function like HighlightOnWebsite(A1,A2).
Would something like this be possible?