I have a browse screen with a gallery where I want to display a label that specifies whether a value is Yes or No, but the label displays “true” and “false” instead.
Right now my text property is set to:
”MCC Request: “ & ThisItem.’MCC Request’ which displays:
MCC Request: false
Can I translate this so it shows up as:
MCC Request: No
?
Solved! Go to Solution.
Use the following:
If(ThisItem.'MCC Request' = true,"MCC Request: Yes","MCC Request: No")
Use the following:
If(ThisItem.'MCC Request' = true,"MCC Request: Yes","MCC Request: No")
That worked, thank you very much!
User | Count |
---|---|
161 | |
86 | |
68 | |
63 | |
62 |
User | Count |
---|---|
212 | |
146 | |
93 | |
81 | |
68 |