Question : Hyperlink activating the diagram/Drawing

Dear experts,

I have done hyperlink between page 1 and 3

Now when i clck on the hyperlink in first page it takes me to the page 3. In page 3 there is a drawing.

Now when the cursor reaches the destination, the draw get higlighted. Meaning the border and shapes get activated.

Is there away i can lock it and then view the diagram only rather than me getting distrcted with the highlighted contours

Thank you

Answer : Hyperlink activating the diagram/Drawing


sub remove_junk

dim c1 as range
dim c2 as range


for each c1 in sheet1.range(A:A)
     for each c2 in sheet2.range(A:A)
           if c1.value = c2.value then
                  goto found
           end if
     next
c1.delete
found:
next

end sub

You could use something like this

Random Solutions  
 
programming4us programming4us