I spent a while looking for solutions to this problem
You can use the Application Send keys commands to get to the ribbon button. See the following to get there:
Sub RefreshGraph()
'Forces ribbon to home to ensure common reference
Application.SendKeys ("%H%")
'Naviagate to Nodexl ribbon
Application.SendKeys ("%Y")
'Select the Refresh graph button
Application.SendKeys ("Y5%")
End Sub
I hope that helps!
Regards,
Jamie
You can use the Application Send keys commands to get to the ribbon button. See the following to get there:
Sub RefreshGraph()
'Forces ribbon to home to ensure common reference
Application.SendKeys ("%H%")
'Naviagate to Nodexl ribbon
Application.SendKeys ("%Y")
'Select the Refresh graph button
Application.SendKeys ("Y5%")
End Sub
I hope that helps!
Regards,
Jamie