So I have a dataset that contains a column with dates. I want to create a pie-chart that shows the amount of cells in that column that is empty and the amount that has a value. So I tried to create a data expression. In this data expression I filled in:
var feat=FeatureSetByPortalItem(Portal('correctaddress'), '6227a7a523744c978d8fb6280168c119', 0)
return IsEmpty(feat.VerwijderdOp)
Of course the 'correctaddress' is normally filled with the actual link to my organisation. If I just do return(feat) I can see the entire table, which has a column called VerwijderdOp. However, when I try this or even try to access any column, so even something as simple as return feat.OBJECTID, I get the error
Execution Error:Runtime Error: Cannot call member property on object of this type. VerwijderdOp
Can anybody help me out?