question

Anggoro P avatar image
0 Likes"
Anggoro P asked Matthew Gillespie edited

Deleting row and sorting based on column value in global table

Hi,

I need to delete some rows that have column value <= 0 and then sort ascending the remaining rows. I am using custom code on reset trigger. My code is as follows, but it doesn't seem to work. I think j parameter on deletetablerow means number of rows that will be deleted.

Anyone has an idea?

  1. int j;
  2. int k;
  3. for (k = 1; k <= 28; k +=1);
  4. {
  5. int delRow = 0;
  6. for (j = 1; j < 29; j += 1)
  7. {
  8. if (Table("ScheduledPicking_CO")[j]["PickingTime"]<=0)
  9. {
  10. delRow = 1;
  11. break;
  12. }
  13. }
  14. if (delRow = 1);
  15. {
  16. deletetablerow("ScheduledPicking_CO",j);
  17. }
  18. }
  19.  
  20.  
  21.  
  22.  
Choose One
flexscriptcode
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Raja Sekaran avatar image
1 Like"
Raja Sekaran answered Matthew Gillespie edited

Hi @Anggoro P

I attached the sample model. deleterow-support-1.fsm

Use the below code to update the global table the way you wanted. I hope this helps you.

  1. Table table = Table("GlobalTable1");
  2. for (int j = 1; j <= table.numRows; j++)
  3. {
  4. if (table[j][1] <= 0)
  5. {
  6. table.deleteRow(j);
  7. j--;
  8. }
  9. }
  10. table.sort(1);

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.