I have a List in a SharePoint site that contains work orders and one of the fields is a Person object named Technician. I'm trying to build a flow so that when that Technician field changes, it sends a Teams message to the technician.
I tried to use the Switch function On Technician, but the cases only allow for text, so the comparison fails.
I know the Technician object has a property "DisplayName" that I can use for the comparison, but I can't figure out how to write that out.
I figure I'd have to put something like the following in the Switch On test: Technician.DisplayName, but can't figure out the correct format.