Forum Discussion
Anonymous
8 years agoNot applicable
Calculate max date over multiple dates in a row
Hi all, Please review below table, called "Requests". I need to calculate, for each individual row in the table, the largest value / newest date of the columns [Creation date], [Start d...
Anonymous
8 years agoNot applicable
Hi Zubair,
Unfortunately the UNION function is also not accepted by Excel 2013.
This is the type of solution I'm thinking about:
MAXX(
<SomeTable, dynamically created to contain four dates per row>,
[SomeTable]
)
Do you have any other ideas?
Erwin
Zubair_Muhammad
Community Champion
8 years agoAnonymous
Can you use GENERATESERIES in Excel 2013?
- Anonymous8 years agoNot applicable
Nope, just GENERATE and GENERATEALL
- Zubair_Muhammad8 years ago
Community Champion
Anonymous
The old fashioned way should work
= MAX ( MAX ( MAX ( [Creation date], [Start date] ), [Delivery date] ), [Verification date] )- Zubair_Muhammad8 years ago
Community Champion
Anonymous
Max takes only 2 arguments. So we have to nest them
- Anonymous8 years agoNot applicable
Hi Zubair,
Still doesn't work. In your example you are still putting four dates in one MAX function, which is not allowed.
I'm trying to calculate over a dynamic table using MAXX and ROW, but I can't seem to work what the expression should be (argument 2 of MAXX).
=MAXX( ROW( "Create",MAXX(VALUES(Requests[Request]),Requests[Creation date]), "Start",MAXX(VALUES(Requests[Request]),Requests[Start date]), "Deliver",MAXX(VALUES(Requests[Request]),Requests[Delivery date]), "Verify",MAXX(VALUES(Requests[Request]),Requests[Verification date]) ), <What goes here???> )