I have a form for work that is auto populated from a pre-existing customer form, but the drop downs and I are disagreeing. Due to this form being for work and being used/transferred through multiple organizations, I do not want any drop down boxes. What I am looking at doing is to have the selected values from the drop down boxes auto populate into the corresponding cells within the new form. ie: The drop down is in OriginalSheet D12 and I want the selected value to populate in NewSheet D12.
I have tried all of these answers:
Get dropdown value in VBA and get the name of the dropdown...nowhere to be found?
Return the text from a dropdown box rather than the index number
Return the selected text from a dropdown box
and am currently on the below code, but I still cannot get the selected value to populate into the new cell:
Sub Dropdown()
Dim dd As Dropdown
Set dd = Sheets("LTL Quote Form").Dropdowns("Drop Down 63")
Set r = Sheets("Sheet3").Range("D12")
Set ddValue = r(dd.ListIndex)
End Sub