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 / Need help to match val...
Power Apps
Answered

Need help to match value between input and sharepoint then populate radio buttons.

(0) ShareShare
ReportReport
Posted on by 426

Hi,

Can someone help me, i have a powerapp form text input which when submitted falls nicely in database A. This input needs to be compared with a measurement criteria database b item.

In short there are three problem i'm facing

1) upon submit the system should calculate if the user input is lesser than database B item then reveal a radio selection and set it to fail and display a label sentence "u passed please go next item" . At the same time it will set checkbox in diagram to weld repair.

2) if the input is greater than database B we are supposed to toggle to (pass) button and reveal a another set of toggle button.

3) last toggle question should reveal a sentence with a calculation field under skim cut value where user input minus database b divide 2.

I got some screenshots here to show you what i actually wanted.

problem to compare ac and reveal combo box.jpgdata b.jpg

Categories:
I have the same question (0)
  • Verified answer
    v-xida-msft Profile Picture
    Microsoft Employee on at

    Hi @nchandran ,

    Do you want to compare the user input (Line Item 1 Text Box) with the ACLineitem1 column in your data base B (a SP List)?

    Is there only one record existed in your data base B?

     

    Based on the issue that you mentioned, I think If function could achieve your needs. Please take a try with the following workaround:

    Set the OnSelect property of the "Submit"  button to following:

    Set(
    SubmittedLineItem1,
    Patch('Your Database A', Defaults('Your Database A'), {LineItem1Column: Value('Line Item 1'.Text)})
    )

    Note: The LineItem1Column represents the number column in your database A, which used to store the Line Item 1 text box (User Input).

    Set the Default property of the Radio control to following:

    If(
     !IsBlank(SubmittedLineItem1) && SubmittedLineItem1.LineItem1Column < First('Your database B').ACLineitem1,
     "Fail",
     !IsBlank(SubmittedLineItem1) && SubmittedLineItem1.LineItem1Column > First('Your database B').ACLineitem1,
     "Pass"
    )

    Add a Label (Label1), set the Text property to following:

    "u passed please go next item"

    set the Visible property to following:

    If(Radio1.Selected.Value = "Fail", true, false)

    Set the Default property of the "Weld Repair + machine" Checkbox to following:

    If(
    Radio1.Selected.Value = "Fail", true,
    Radio1.Selected.Value = "Pass", false
    )

    Set the Default property of the "Skimcut" Checkbox to following:

    If(
     Radio1.Selected.Value = "Pass", true, 
     Radio1.Selected.Value = "Fail", false
    )

     

    Add aother Label (Label2) under the "Skimcut" Checkbox, set the Text property to following:

    "The calculation value is " &  SubmittedLineItem1.LineItem1Column - First('Your database B').ACLineitem1/2

    set the Visible property of the Label2 to following:

    If(
     Radio1.Selected.Value = "Pass",
    true,
    false )

    Please take a try with above solution, check if the issue is solved.

     

    Best regards,

  • nchandran Profile Picture
    426 on at

    Thank you kris.


    @v-xida-msft wrote:

    Hi @nchandran ,

    Do you want to compare the user input (Line Item 1 Text Box) with the ACLineitem1 column in your data base B (a SP List)?

    Is there only one record existed in your data base B?

     

    Based on the issue that you mentioned, I think If function could achieve your needs. Please take a try with the following workaround:

    Set the OnSelect property of the "Submit"  button to following:

    Set(
    SubmittedLineItem1,
    Patch('Your Database A', Defaults('Your Database A'), {LineItem1Column: Value('Line Item 1'.Text)})
    )

    Note: The LineItem1Column represents the number column in your database A, which used to store the Line Item 1 text box (User Input).

    Set the Default property of the Radio control to following:

    If(
     !IsBlank(SubmittedLineItem1) && SubmittedLineItem1.LineItem1Column < First('Your database B').ACLineitem1,
     "Fail",
     !IsBlank(SubmittedLineItem1) && SubmittedLineItem1.LineItem1Column > First('Your database B').ACLineitem1,
     "Pass"
    )

    Add a Label (Label1), set the Text property to following:

    "u passed please go next item"

    set the Visible property to following:

    If(Radio1.Selected.Value = "Fail", true, false)

    Set the Default property of the "Weld Repair + machine" Checkbox to following:

    If(
    Radio1.Selected.Value = "Fail", true,
    Radio1.Selected.Value = "Pass", false
    )

    Set the Default property of the "Skimcut" Checkbox to following:

    If(
     Radio1.Selected.Value = "Pass", true, 
     Radio1.Selected.Value = "Fail", false
    )

     

    Add aother Label (Label2) under the "Skimcut" Checkbox, set the Text property to following:

    "The calculation value is " &  SubmittedLineItem1.LineItem1Column - First('Your database B').ACLineitem1/2

    set the Visible property of the Label2 to following:

    If(
     Radio1.Selected.Value = "Pass",
    true,
    false )

    Please take a try with above solution, check if the issue is solved.

     

    Best regards,


     

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 June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 339 Most Valuable Professional

#2
11manish Profile Picture

11manish 180

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 88 Super User 2026 Season 1

Last 30 days Overall leaderboard