A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
That requires a little bit of VBA code.
Right-click the sheet tab of the worksheet with the drop downs.
Select 'View Code' from the context menu,
Copy the following code into the worksheet module:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("P2"), Target) Is Nothing Then
If Range("P2").Value = "" Then
Application.ScreenUpdating = False
Application.EnableEvents = False
Range("P3").ClearContents
Application.EnableEvents = True
Application.ScreenUpdating = True
End If
End If
End Sub
Switch back to Excel.
Save the workbook as a macro-enabled workbook (*.xlsm).
Make sure that you allow macros when you open the workbook.