sorry i forget to mention that the cell A include Amount and the cell B include the date ,, and so on ,, so i need to extract the date and ignore the amount.Use the MAX formula. E.g. if your dates are in A1 to A5
=MAX(A1:A5)
how to use max formula to get result ??What is the exact format of your data? That will help identify if you need to split off the date data first.
If column B are just dates then change the A to B in the formula, e.g.
=MAX(B1:B1000) assuming you have 1000 or less rows of data.
Don 't forget to format the output cell as a date or you'll just get a large number telling you the date is that many days past 1/1/1900
What is the actual result you would expect from that data?how to use max formula to get result ??
Book1 | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
1 | Sum Amounts | Newest Date | Date 6 | Payment 6 | Date 5 | Payment 5 | Date 4 | Payment 4 | Date 3 | Payment 3 | Date 2 | Payment 2 | Date 1 | Payment 1 | |||
2 | 52,111,500.00 | 14/08/2018 | 14/08/2018 | 13,500,000.00 | 25/06/2018 | 13,500,000.00 | 15/04/2018 | 1,000,000.00 | 12/04/2018 | 17,648,000.00 | 12/05/2017 | 5,000,000.00 | 14/11/2017 | 1,463,500.00 | |||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | A2 | =SUMIFS(D2:O2,D1:O1,"Payment*") |
B2 | B2 | =MAXIFS(D2:O2,D1:O1,"Date*") |