Forum Discussion
NathanAndrews
Jan 28, 2022Copper Contributor
XLOOKUP to compare "Last Updated" of Container vs "Last Updated" of each of it's Contents
I'm looking to compare the last time a container was updated against the last time each of the items within said container were updated. Each container can be filled with 1-10 items from a list of...
- Jan 28, 2022
That could be like
=IF( [@[Last_Updated]] < MAX( IFNA( INDEX( Items[Last_Updated], XMATCH(Table1[@[Item_1]:[Item_3]], Items[Item_Name] ) ), 0 ) ), "Yes", "No" )
SergeiBaklan
Jan 28, 2022Diamond Contributor
That could be like
=IF( [@[Last_Updated]] <
MAX(
IFNA(
INDEX( Items[Last_Updated],
XMATCH(Table1[@[Item_1]:[Item_3]], Items[Item_Name] )
),
0 )
),
"Yes", "No" )
- NathanAndrewsJan 28, 2022Copper Contributor
SergeiBaklan That did it! And I think I can piece together how and why. Thank you very much, Sergei!