Can someone tell me why this formula is not working properly?
The purpose is to test whether the date is the most recent date per month. It is supposed to return a TRUE in both cases as they are different months.
<tbody>
</tbody>
Thanks
The purpose is to test whether the date is the most recent date per month. It is supposed to return a TRUE in both cases as they are different months.
Formula | Result | Date |
=B2=SUMPRODUCT(MAX((MONTH(B2)=MONTH($B$2:$B$3))*$B$2:$B$3)) | False | 42123 |
=B3=SUMPRODUCT(MAX((MONTH(B3)=MONTH($B$2:$B$3))*$B$2:$B$3)) | True | 42124 |
<tbody>
</tbody>
Thanks