i need help creating a formula to do a lookup, on my landing page i have an identifier for a company, however on my data page there may be more than one record for that company that all have the same identifier with different start dates. i need a formula to bring in the last date associated with that record. for example
Landing page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Identifier[/TD]
[TD]Company Name[/TD]
[TD]End Date[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Data Page[TABLE="width: 500"]
<tbody>[TR]
[TD]Identifer[/TD]
[TD]Company Name[/TD]
[TD]End Date[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD]2/28/2019[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD]12/31/2019[/TD]
[/TR]
</tbody>[/TABLE]
on my landing page i want to be able to pull in that 12/31/2019 date for my end date
Landing page
[TABLE="width: 500"]
<tbody>[TR]
[TD]Identifier[/TD]
[TD]Company Name[/TD]
[TD]End Date[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Data Page[TABLE="width: 500"]
<tbody>[TR]
[TD]Identifer[/TD]
[TD]Company Name[/TD]
[TD]End Date[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD]2/28/2019[/TD]
[/TR]
[TR]
[TD]DHG1[/TD]
[TD]Northland Tool[/TD]
[TD]12/31/2019[/TD]
[/TR]
</tbody>[/TABLE]
on my landing page i want to be able to pull in that 12/31/2019 date for my end date