web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Lookup specific line i...
Power Apps
Unanswered

Lookup specific line in SQL table

(0) ShareShare
ReportReport
Posted on by

Hello,

 

I am pre-populating fields in a form. What I want to do is lookup a column in a SQL table but choose which line to perform the lookup. Basically multiple lines can be associated with a single referenced number. Can a lookup specify a line or does it need to be a filter?

 

I'm performing a lookup of a SQL table and then gets submitted to a SharePoint List. My formula works just need to specify a certain line in the SQL table.

 

Thanks in advance.

Categories:
I have the same question (0)
  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    @ShadowTech ,

    You can have a LookUp with a condition

    If(
     x,
     Lookup( a . . ),
     y,
     Lookup( b . .),
     Lookup( c . .)
    )

     

    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.

  • ShadowTech Profile Picture
    on at

    @WarrenBelz This is what I'm using right now. I need to add to the formula to check for a specific line.

     

    If(Form1.Mode=FormMode.New, LookUp('[dbo].[tblsoReturnAuthLine]',ReturnAuthNumb=DataCardValue10.Text,Item),ThisItem.'Part Number')

     

    Thanks 

  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    @ShadowTech ,

    You need to have the whole lookup in there - not sure if the logic is what yo are after, but the syntax would be like this.

    If(
     Form1.Mode=FormMode.New, 
     LookUp(
     '[dbo].[tblsoReturnAuthLine]',
     ReturnAuthNumb=DataCardValue10.Text,
     Item
     ),
     LookUp(
     '[dbo].[tblsoReturnAuthLine]',
     ReturnAuthNumb=ThisItem.'Part Number',
     Item
     )
    )

     

    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.

  • ShadowTech Profile Picture
    on at

    @WarrenBelz In my formula I'm accessing the first line for the "Item" column which works just fine. I need to access the second line in the "Item" column.

  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    @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.

  • ShadowTech Profile Picture
    on at

    @WarrenBelz 

     

    It's actually pulling the same line.

     

    ThisItem.'Part Number'

     

     

     

     

    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
    ))

     

     

     

     

    Thanks in advance for your help.

  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    @ShadowTech ,

    The data field in the second bit is referenced in the With() statement - as mentioned I have simply gathered the first two matching records, then specified the last one of these.

    This is a workaround for an unusual requirement.

     

    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.

     

  • ShadowTech Profile Picture
    on at

    @WarrenBelz  Any recommendations? As of right now it pulls the same value in row one as my original lookup formula.

  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    @ShadowTech ,

    I have tested it here and got the second line (as I mentioned, it is pulling the first two and then taking the last one of them)

    SecondItemChoice.png

     

    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.

  • ShadowTech Profile Picture
    on at

    @WarrenBelz But the values in this column are based on a value that is manually input from a user from another table.

     

    Basically a user inputs a number in filed "A". Field "B" (Item column) returns records based on that number. 

    ReturnAuthNumb=DataCardValue10.Text is a different DataCard referencing a different SQL source table, not '[dbo].[tblsoReturnAuthLine]'.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 401 Most Valuable Professional

#2
11manish Profile Picture

11manish 201 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 128 Super User 2026 Season 2

Last 30 days Overall leaderboard