hi, thanks. too funny if i messed up not giving enough info.. but popup got with that eg was
i could not get that to work either.
ActiveWorkbook.FollowHyperlink ActiveCell.Value 'cannot open the specified file
i have been using a hyperlink with connecting cells to make a full web address, using andpersands.
i think i was just running on original assumption of just click on a cell.
examples:
=HYPERLINK($BM$4&BH866&IF($AA$1=1,"",IF(LEFT(AO866,1)="&",AO866&$BQ$6,$BM$5&H866)&IF(AS866="x",$BQ$5,IF(AS866="y",$BR$5,IF(AS866="z",$BS$5,$BM$6)))),IF(P866>0,"O",IF(H866=20,"A",IF(FU866<0.0004,"F",MIN(S866,9)))))
gets:
=HYPERLINK(IF(OR(LEFT(AQ866,1)="m",$BQ$1="y"),$BP$4&BH866,$BQ$2&BH866&$BQ$3),IF(OR(LEFT(AQ866,1)="m",$BQ$1="y"),"Y",$X$8))
gets:
==========
if this is any further isolated, is where at on an example for click a cell vb. not yet working though:
sites do not show how to apply vb / what- where. 'NOT WORKING:
(put the following as is, in a module)
Option Explicit
Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
Private Const MOUSEEVENTF_LEFTDOWN As Long = &H2
Private Const MOUSEEVENTF_LEFTUP As Long = &H4
'Const MOUSEEVENTF_LEFTDOWN As Long = &H2
'Const MOUSEEVENTF_LEFTUP As Long = &H4
'Const MOUSEEVENTF_LEFTDOWN = &H2
'Const MOUSEEVENTF_LEFTUP = &H4
Sub goClick()
mouse_event MOUSEEVENTF_LEFTDOWN, 0&, 0&, 0&, 0&
mouse_event MOUSEEVENTF_LEFTUP, 0&, 0&, 0&, 0&
End Sub