jellybean1974
New Member
Hi there
I have a workbook which has several worksheets that I use as source of Data Validation Lists.
The lists get updated when I double click on the 1st item in the list, via an Excel Add-in to database software called Jedox.
I would like the lists to get updated automatically when the workbook is opened, however, when I tried to record a macro of me double clicking on the cell, the VB looks like this
which is just a single click? So then I tried adding Application.DoubleClick
but that didn't work either. Is this even possible?
Thanks
J
I have a workbook which has several worksheets that I use as source of Data Validation Lists.
The lists get updated when I double click on the 1st item in the list, via an Excel Add-in to database software called Jedox.
I would like the lists to get updated automatically when the workbook is opened, however, when I tried to record a macro of me double clicking on the cell, the VB looks like this
Code:
Sub Macro3()
'
' Macro3 Macro
'
Sheets("OS").Select
Range("A10").Select
End Sub
which is just a single click? So then I tried adding Application.DoubleClick
Code:
Sub Macro3()
'
' Macro3 Macro
'
Sheets("OS").Select
Range("A10").Select
Application.DoubleClick
End Sub
but that didn't work either. Is this even possible?
Thanks
J