Hello,
I have made a PowerApps app with a FormProcessor in it. The formprocessor works like a charm however sometimes the VAT value isn't correct. So what is want is a possibility to overwrite the fromprocessor value in the label.
The label text in my app is now: FromProcessor1.Results.TotalVat.Value.
With this code I'am not abble to change the values. How can i make this possible?
Thanks
Hi CedrickB,
Thank you so much for the quick response! That is exactly what I needed.
I hope I understood properly your request but you can insert a text input instead
Also, you can display either a Label or a Text Input depending on wherever the VAT is empty or not by
1. Inserting a "Label" and "Text Input" component in the same coordinate and with same size.
2. Control visibility with "Visible" property on each component, respectively
Blank(FromProcessor1.Results.TotalVat.Value)
and
Not(Blank(FromProcessor1.Results.TotalVat.Value)