Hi Members,
I have a requirement in Power Apps where I want to populate or bind the text input values in a Dropdown control.
Scenario:
I have a Power Apps Text input control [Single line], Dropdown control, and Button Control. I will enter one value inside the text input box and then click the Button.
For example, if the user provides Completed in the text input control and clicks on the button 5 times, the dropdown will have the 5 values of Completed.
But in my case, the text values are binding in the dropdown control but if I click on the button control again and again, the dropdown values do not increase.
For example, If I click on the button control 4 times, the dropdown value is only 1 item Completed. But I need the four values of completed.
In the button control's OnSelect property, I have put the below code:
UpdateContext({Status3:Split(txt_Status_1.Text, Char(10))})
Can anyone please suggest how I can resolve this? Thanks in advance!