I am using Excel 2016. I have a table with three columns: "Start Date", "End Date", and "Season". The table looks as follows:
<p>
<table>
<tr>
<th>Start Date</th>
<th>End Date</th>
<th>Season</th>
</tr>
<tr>
<td>1/1/2018</td>
<td>3/19/2018</td>
<td>Winter</td>
</tr>
<tr>
<td>3/20/2018</td>
<td>6/20/2018</td>
<td>Spring</td>
</tr>
<tr>
<td>6/21/2018</td>
<td>9/21/2018</td>
<td>Summer</td>
</tr>
<tr>
<td>9/22/2018</td>
<td>12/21/2018</td>
<td>Autumn</td>
</tr>
<tr>
<td>12/22/2018</td>
<td>12/31/2018</td>
<td>Winter</td>
</tr>
</table>
</p>
So I want the user to enter in a date and then lookup the season (or if it's out of range, output N/A or "Invalid"):
<p>
<table>
<tr><td>7/18/2018</td></tr>
<tr><td>???</td></tr>
</table>
</p>
How do I do this?
<p>
<table>
<tr>
<th>Start Date</th>
<th>End Date</th>
<th>Season</th>
</tr>
<tr>
<td>1/1/2018</td>
<td>3/19/2018</td>
<td>Winter</td>
</tr>
<tr>
<td>3/20/2018</td>
<td>6/20/2018</td>
<td>Spring</td>
</tr>
<tr>
<td>6/21/2018</td>
<td>9/21/2018</td>
<td>Summer</td>
</tr>
<tr>
<td>9/22/2018</td>
<td>12/21/2018</td>
<td>Autumn</td>
</tr>
<tr>
<td>12/22/2018</td>
<td>12/31/2018</td>
<td>Winter</td>
</tr>
</table>
</p>
So I want the user to enter in a date and then lookup the season (or if it's out of range, output N/A or "Invalid"):
<p>
<table>
<tr><td>7/18/2018</td></tr>
<tr><td>???</td></tr>
</table>
</p>
How do I do this?