//areas which are surveyed 30 days ago or less belong in the first group
if (DateDiff(Now(), Date($feature.CreationDate), 'months') <= 😎 {
return "Surveyed within the last 8 months" }
//areas which are surveyed more than 30 days but less than 100 days ago belong in the second group
else if (DateDiff(Now(), Date($feature.CreationDate), 'months') > 8 &&
DateDiff(Now(), Date($feature.CreationDate), 'months') < 10) {
return "Surveyed between 8 to 10 months ago" }
else if (DateDiff(Now(), Date($feature.CreationDate), 'months') > 10 &&
DateDiff(Now(), Date($feature.CreationDate), 'months') < 12) {
return "Surveyed between 10 to 12 months ago" }
//areas which do not satisfy any of the given conditions belong in the fourth group
else {
return "None of these Date Ranges" }
Â
I'm using the above expression to symbolise on inspections, however I am noticing this seems to cap at 100,000 inspections when in the layer there is around 300,000.
Has anyone else encountered this and if so is there a work around or is this just how it is?
Â
Thank you for any contributions