Hi
I have a PowerApps form the requires three separate authorisations (one from each stakeholder department).
The form requires the stakeholders to enter in a code in the Sign Off box and this automatically populates the next two boxes across with their name.
What I would like is to add a visual soe when all stakeholders have approved it will, for argument sake, colour a box green. If I'm missing one or more of the stakeholders approval then the box remains red.
Any guidance on this can be achieved pleased?
Solved! Go to Solution.
Hi @russelln1 ,
For Text Input boxes, you can easily control the fill color by the Fill property. For example:
If(IsBlank(Self.Text),RGBA(255, 0, 0, 0.8),RGBA(255, 255, 255, 1))
With this formula, this box will be filled with red color if it's blank. When typing in any single character, it will turn to be normal white.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.
Hi @russelln1 ,
For Text Input boxes, you can easily control the fill color by the Fill property. For example:
If(IsBlank(Self.Text),RGBA(255, 0, 0, 0.8),RGBA(255, 255, 255, 1))
With this formula, this box will be filled with red color if it's blank. When typing in any single character, it will turn to be normal white.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.
User | Count |
---|---|
262 | |
110 | |
92 | |
54 | |
43 |