Hi
Is it possible to, based on a cell value, display or hide a correspondent radio button?
I'm using an excel file as a search tool. That search will return values on cells from E5 to E20. It can be 1 result, filling one cell or multiple results, filling the equal amount of cells.
I've added radio buttons to copy that specific cell value (see code bellow for one of them). What I'm curious about if is it possible to hide the radio button if the correspondent cell is empty. For example, if only 3 results are found, only 3 radio buttons appear (instead of all 15).
Sub OptionButton2_Click()
Range("L2").Value = Range("E8").Value
Range("K3").Select
Selection.Copy
End Sub
Thanks in advance!
Bookmarks