Hello,
Would anyone please be willing to share how to display quarterly inspection results in a pop up using Arcade? I’m at a loss. Below is an example of what I’ve tried so far:
var Q3E = Date(2021,09,01);
var Q3S = Date(2021,05,01);
var CD = FeatureSetByRelationshipName($feature,"InsTable",["InsDate"]);
var CR = IIF(CD < Q3E && CD >= Q3S, "InsRead", "No Data");
return CR;