- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2025 09:03 PM
Using GlideExcelParser, I can read data from an excel file that is attached to a record. But what I'm interested to know is if I can use it to update the same file with some data.
For example, original sheet contains the following:
ID | Label | Processed |
1 | Foo | |
2 | Bar | |
3 | Baz |
After reading each row, I need it updated as (depending on some logic)
ID | Label | Processed |
1 | Foo | Yes |
2 | Bar | Yes |
3 | Baz | No |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2025 09:22 PM
No you cannot manipulate
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2025 09:22 PM
No you cannot manipulate
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2025 10:59 PM
can you suggest some approaches to update an excel file after processing each rows?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2025 09:11 PM
What I did was create a new csv file with the details that I need while traversing each row of the excel and attach it to the same record from where I'm reading the excel file.