I have a UserForm that automatically populates with given data from a table, I cannot get the format of the date to change. I am not sure where my code went wrong.
Set name_ = Display.Controls.Add("Forms.Label.1", "Test" & labelCounter, True)
With name_
.Caption = Format(debt_name_cell, mmm - yy)
.Left = 10
.Width = 50
.Top = 10 * labelCounter
End With
Set debt_name_cell = debt_name_cell.Offset(1, 0)
