A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi T_D_C,
I have the same issue on Exec 2016 and Win7. Drop down list arrow flashes then disappears. Here is a workaround that works for me until the MSFT folks distribute a fix.
I created a VBA selection change and was going to set the shape visibility to 'True' when the cursor moved into one of my 22 drop down list cells. But I found just checking the intersection of any cell on the sheet caused it to work.
Private Sub Worksheet_SelectionChange(ByVal target As Range)
If Not Intersect(target, Range("A1")) Is Nothing Then
End If
End Sub
Limitation: Once a selection is made from the list, the arrow disappears. You have to cursor out and back for the arrow to re-appear.
A non VBA workaround is to keep the Selection Pane window up and click the 'Show All' button when you cursor into a drop down list cell.
Maybe it will work for you