Hi all,
I've a dataverse database.
In my database I've a yes/no column, called tasktype.
When I try to set a label in my gallery that show the name record when task type is set on Yes and if it's Set on No, it should be show the value of a dropdownlist.
Now I'm strubeling to achieve this. (I've done it a lot of times with SharePoint as datasource, but now with dataverse it will not work properly.)
My formula:
If(ThisItem.TaskType ="Yes",ThisItem.Name,ThisItem.'Task (Pre_task)')
Does anyone how to achieve it / Why it's not working?