SmartStepping1a.ecl 332 B

1234567891011
  1. //
  2. // Example code - use without restriction.
  3. //
  4. IMPORT $;
  5. IDX := $.DeclareData.IDX__Person_State_City_Zip_LastName_FirstName_Payload;
  6. Filter := IDX.State = 'LA' AND IDX.City = 'ABBEVILLE';
  7. OUTPUT(CHOOSEN(SORT(IDX(Filter),FirstName),5)); //the old way
  8. OUTPUT(CHOOSEN(STEPPED(IDX(Filter),FirstName),5)); //Smart Stepping