Hi,
Not sure if it is possible to add macro buttons with VBA, but here goes my question:
This is my sample table:
What I'm trying to do is have a VBA that will create a button on each cell on column K, that when clicked, it will open a windows folder based on the date on column C
For example:
K3(date 07/30/2021) would have a button that would open this folder:
Call Shell("explorer.exe" & " " & "G:\Shared drives\AP-AR\AR\Bank Deposits\2021\07-2021\Remittances\07-30 Remittances", vbNormalFocus)
and each cell would need to have its own button(or anything clickable) that would open its respective folder.
Is this possible?
Thank you very much in advance!
P.S. Ignore empty J column. I also need help with that one, but I think I should make a different thread per question.
Not sure if it is possible to add macro buttons with VBA, but here goes my question:
This is my sample table:
What I'm trying to do is have a VBA that will create a button on each cell on column K, that when clicked, it will open a windows folder based on the date on column C
For example:
K3(date 07/30/2021) would have a button that would open this folder:
Call Shell("explorer.exe" & " " & "G:\Shared drives\AP-AR\AR\Bank Deposits\2021\07-2021\Remittances\07-30 Remittances", vbNormalFocus)
and each cell would need to have its own button(or anything clickable) that would open its respective folder.
Is this possible?
Thank you very much in advance!
P.S. Ignore empty J column. I also need help with that one, but I think I should make a different thread per question.