Skip to main content

Group ID should start from 1 for each unique Attribute 1 value and the smallest value of Attribute 2 for each Attribute 1 value should get it as follows:

image

Probably a few ways to get this result, but this should work.

  • Aggregate based on Attribute1 and Attribute2
  • Sort based on Attribute1 and Attribute2
  • Counter gives the aggregated features the GROUP_ID
  • Deaggregate, which retains the GROUP_ID on the individual features.

image


Did you really get Counter to start from 1 for each attribute1 value?


Did you really get Counter to start from 1 for each attribute1 value?

I really did😀 In the Counter, you can specify the Count Start with '1'.


Did you really get Counter to start from 1 for each attribute1 value?

Ahh, one small correction. I have attached the workspace. The group by needs to be set in the Counter:

image


Reply