See attached for a suggestion.
Suggestion uses a helper column to find the pivot points..
then a count is done on these pivot points and another formula lists them in a column without blanks.
Note: the formula in E2 is an array formula and must be confirmed with CTRL+SHIFT+ENTER not just ENTER to get the { } brackets...then it can be copied down as far as you want.
Formula in B2:
=IF(AND(A3<A2,A2>A1),A2,IF(AND(A3>A2,A2<A1),A2,""))
copied down
Formula in D2 to get count of pivots:
Formula in E2 to extract pivot points:
=IF(ROWS($B$1:$B1)>$D$2,"",INDEX($B$2:$B$14,SMALL(IF(ISNUMBER($B$2:$B$14),ROW($B$2:$B$14)-ROW($B$2)+1),ROWS($B$2:$B2))))
confirmed with CSE keys and copied down
Bookmarks