Hello, I am new to PowerApps and Still Learning about this. may i seek help with you guys. I have this Text Input name(DataCardValue33) Inside the Form. And i insert a Button(RTO) and i want to change the value of Text Input. Instead of Inputing text. i just want to Click the button and update the value. i want to input "1" on the Text Input. it is also connected to datasource Excel. How can i get this. Thankyou.
Hi @JuliusMarioT ,
Assuming you want to also display the saved value in the text box (you did not state the field name here), make the OnSelect of your Button
UpdateContext({varRTO: "1"})
and the Default of DataCardValue33
Coalesce(
varRTO,
ThisItem.YourFieldName
)
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.
Visit my blog Practical Power Apps