Hi All,
I have 5 columns of data. In which A to D columns are text and E column is date. I need 2 formula in F & G column to check latest and oldest date in column E based on criteria from A to D Column.
For example: In Column E I have dates from 2017 September( In 2017 I have only 2 dates 08/10/2017 & 09/22/2017) to 2019 April(Till date 04/17/2019). Now I need a formula in Column F which should say the latest date from column E which is 04/17/2019 and 1 formula in column G which should say the oldest date from column E which is 09/22/2017.
In this I need this to be based on 3 criteria(Column A,B,C,D). I got a formula from google search which gives the latest date(04/172019) but when I use it to find the oldest date instead of 09/22/2017 it gives output as 08/10/2017
Formula for Latest date: (This works fine)
Formula for Oldest date: (This didn't work)
I have 5 columns of data. In which A to D columns are text and E column is date. I need 2 formula in F & G column to check latest and oldest date in column E based on criteria from A to D Column.
For example: In Column E I have dates from 2017 September( In 2017 I have only 2 dates 08/10/2017 & 09/22/2017) to 2019 April(Till date 04/17/2019). Now I need a formula in Column F which should say the latest date from column E which is 04/17/2019 and 1 formula in column G which should say the oldest date from column E which is 09/22/2017.
In this I need this to be based on 3 criteria(Column A,B,C,D). I got a formula from google search which gives the latest date(04/172019) but when I use it to find the oldest date instead of 09/22/2017 it gives output as 08/10/2017
Formula for Latest date: (This works fine)
Code:
MAX(IF(B2:B232149="AM",C2:C232149))
Formula for Oldest date: (This didn't work)
Code:
MIN(IF(B2:B232149="AM",C2:C232149))