We are working to visualize datasets for a Dashboard using a complex Arcade expression. However, we are stuck on the first Filter function of a featureSet. Can anyone offer suggestions??????
var quadTable = FeatureSetByPortalItem(portalUrl, itemId, 29, ["QuadInsp_GUID","FaunaPresent_MarshQuad"]);
var quadOysters = Filter(quadTable, "FaunaPresent_MarshQuad IN ('1')");
The "FaunaPresent_MarshQuad" field can have text values of "1", "1, 2", "1, 2, 3", etc. We want to find those records that have a "1" somewhere present in that field.
Many thanks!