I have a Data Validation List in Cell D10. When the user selects a value, I would like to copy the value to a different cell on the same worksheet.
When I try
Range("G10").value= Range("D10").value
nothing is returned.
As D10 is a Data Validation List, I also tried
Range("G10").value=Range("D10").validation.value
(from an example code found online) but still nothing is returned.