Hi,
I have a table called Users with columns FullName & UserType. I am trying to create a column
which displays all FullName when the UserType is Caregiver.
Getting the below syntax error when using this->
Carer Names = Users[FullName]
FILTER( Users,
[UserType] = "Caregiver")
The syntax for 'FILTER' is incorrect. (DAX(Users[FullName]FILTER( Users,[UserType] = "Caregiver"))).