[Solved] define an input suggestion with vba in excel
You could you a simple userform to select and parse data selection into the row you clicked. First use an Event when you click in the column you want the reminder to pop up in. In this case I choose “D”. Private Sub Worksheet_Change(ByVal Target As Range) Dim arr If Not Intersect(Target, Range(“D:D”)) Is Nothing … Read more