Hello,
I am using a technique I saw on a Reza video to highlight form fields that have been changed. I really like the effect, but I've only been able to get it to work on Text fields.
Border Color formula (Company Text Field example - works fine):
If(ThisItem.Company <> valCompanyES.Text, Orange, RGBA(32, 54, 71, 1))
I've tried this formula for the html text field without success:
If(ThisItem.'Shipment Description' <> txtShipDescEdit.HtmlText, Orange, RGBA(32, 54, 71, 1))
I tried this formula for the Shipping Method dropdown. I don't get any red squigglies, but it doesn't work and I get a message that reads "This formula uses scope, which is not presently supported for evaluation". Not sure what the work around is.
If(ThisItem.'Shipping Method'.Value <> varRecord.'Shipping Method'.Value, Orange, RGBA(32, 54, 71, 1))
I also have a combo box in the form, but I figured I should start with these questions first. Thanks in advance for your help.
