@ShadowTech ,
OK I understand now - a LookUp will get the first matching value. To get the second matching value, you would have to do something like this
If(
Form1.Mode=FormMode.New,
LookUp(
'[dbo].[tblsoReturnAuthLine]',
ReturnAuthNumb=DataCardValue10.Text,
Item
),
With(
{
wItem: FirstN(
Filter(
'[dbo].[tblsoReturnAuthLine]',
ReturnAuthNumb=DataCardValue10.Text
),
2
)
},
Last(wItem).Item
)
I am simply using your filter to grab the first two matching items and then taking the last one.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.