New to PowerApps here:
I am trying to change the Fill in color of a Lable based on its text. I am looking to change the color only if the text STARTWITH or CONTAINS "DPI: "
How can I achieve this?
Thank you
Solved! Go to Solution.
You can update the Fill property of the label. In this example it will fill the label Red if it has "DPI" anywhere in the text otherwise it will be Blue.
If("DPI" in Self.Text , Red,Blue)
You can update the Fill property of the label. In this example it will fill the label Red if it has "DPI" anywhere in the text otherwise it will be Blue.
If("DPI" in Self.Text , Red,Blue)
User | Count |
---|---|
252 | |
126 | |
105 | |
50 | |
49 |