I assigned a name to a merged cell
With Report.Range("C8:H8")
.Name = "Location"
.ClearContents
End With
Range("Location").Value = "Multiple (see below)"
I need to use the value entered to trigger additional code.
Dim Choice as String
Choice = Report.Range("Location").Value
I keep getting a type mismatch error.
Any help would be appreciated