I have posted a couple of times needing help, no luck. So I tried to do it myself, and have been.....unsuccessful. Admittedly I am not very proficient and VBA. Wondering if anyone could take a look at what I got. Help me make the adjustments. Thanks in advance for any help!
Need to have Metadata insert into a cell when opening workbook. Then when saving, cell into property. I tried to just get it to work with a button and am not having any luck. Can someone point me in the right direction? Here's what I got.
Need to have Metadata insert into a cell when opening workbook. Then when saving, cell into property. I tried to just get it to work with a button and am not having any luck. Can someone point me in the right direction? Here's what I got.
Code:
Private Sub CommandButton1_Click()
For Each Prop In ThisWorkbook.ContentTypeProperties
If Prop.Name = “Admit” Then
Prop.Value = Cells(4, 3).Value
End If
End Sub