I have a formula in a Google Sheet that we are transitioning into excel. I'm not sure if this is the most effective way to accomplish what we'd like to do.
We have a chart of dates on one tab (Date Tables), and I'm trying to return the soonest date following a reference date in my main sheet.
Our Date Tables Sheet has includes the first date of each pay period ongoing. Based on the date in cell O2, I need the formula to return the soonest date from the list FOLLOWING their 6 Month Anniversary

Date Tables Sheet has the Pay Period Start Dates in Column B. In this instance I would need it to return "9/13/2021"

The formula we were using in Google Sheets is =ARRAY_CONSTRAIN(ARRAYFORMULA(IF(E2<>"",MIN(IF('Date Tables'!$B:$B>=(E2+182),'Date Tables'!$B:$B)),"")), 1, 1)
The formula was also calculating the 6 months which we no longer need it to do.