Hi all,
In my Order Summary SPL, I have a column named Remarks that has two values: Yes and No. I have a text label to display these values, however, to differentiate between these two values, I would like to have different font types for each. Is that possible to have that styling in Power Apps? If so, where or how should I start?
This is the current code inside Text property :
If(
"Yes/Ya" in ThisItem.Remarks,
"Tools return: " & "Yes"
) & If(
"No/Tidak" in ThisItem.Remarks,
"Tools return: " & "No"
)
Thank you.