CheatTester Posted June 14, 2018 Posted June 14, 2018 how to edit multiple data on saved list at once, usually iam edit it one by one using r = gg.getListItems() r[1].value = 999 gg.setValues(r) r[2].value = 999 gg.setValues(r) r[3].value = 999 gg.setValues(r) and so on,,, and this is edit the data in sequence not at once in the same time how to edit the list number 1,2,3 at once in the same time? (what i want is, select data 1,2,3. edit all) thankyou
Administrators Enyby Posted June 14, 2018 Administrators Posted June 14, 2018 You doing it wrong. No need call gg.setValues(r) after each value. Do it once at end. r = gg.getListItems() r[1].value = 999 r[2].value = 999 r[3].value = 999 gg.setValues(r)
Question
CheatTester
how to edit multiple data on saved list at once,
usually iam edit it one by one using
r = gg.getListItems()
r[1].value = 999
gg.setValues(r)
r[2].value = 999
gg.setValues(r)
r[3].value = 999
gg.setValues(r)
and so on,,, and this is edit the data in sequence not at once in the same time
how to edit the list number 1,2,3 at once in the same time? (what i want is, select data 1,2,3. edit all)
thankyou
1 answer to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.