Hello, I am trying to set the value of a toggle in datacard so I can tell if user selected different item in dropdown.
The toggle is in the datacard and I have entered the following in the Default property of the toggle control.
If( Parent.Default <> ddlTaskMngt_Assignee.Selected.Email , true, false)
I am getting an error that I can't compare a Record with text.
I then updated the code to the following: If( Parent.Default <> {Value: Text(ddlTaskMngt_Assignee.Selected.Email)}, true, false)
I am not getting an error that I can't compare a Record to a Record.
How do I convert Parent.Default to text? I tried Text(Parent.Default), which didn't work.
Thanks in advance!