Hey,
Just getting started with Powerapps but searching for a while for the following;
If powerapps start up i see which user has logged in and get his record out a sharepointlist i created.
Collect(ColUserSettings; First(Filter('Users.Instellingen'; User().FullName in Title)))
Now i want to get a single cell out of this record and store it in a var as a string. But whatever i do i don't seems to get the data as a string in the var.

I'm trying to get the column Afdeling in the var but powerapps is always complaining that the var is a record and not a string (text).
How i'm trying it to do is like this:
Set(varUserAfdeling; ColUserSettings.Afdeling)
The point eventually is that i store all the setting from the user for the app in the sharepointlist. So for this example the data will be filtered automaticly on the string we find in the column "Afdeling". I also try'd to use the cell directly in the default tab of the dropdown of the filter options. Like this:
If(ColUserSettings.Afdeling = "Bottelarij"; ColUserSettings.Afdeling)
But get the error that he is expecting a record and not a string.
I hope my question made some sense.
Thanks at advance!
Kind regards,
Ward