The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Removing rows
Hi All,
I'm a complete newbie so any help is appreciated. I'm using the GUI as my coding skills are pretty poor.
I have several xls invoices I'm trying to append for analysis. Each of them has a name at row 25 and the invoice information from row 26 onwards. Each invoice will vary in the amount of total rows. Unfortunately there's a whole bunch of useless information in the bottom few rows of each invoice that I need to get rid of (footer).
I've got several invoice files in xls format (10+ files) that I am reading through "Loop files" with a nested "Read xls"
My cell range is A25:BO1000. All rows above A25 have data I don't want (invoice headings ect ect).
I'm reading the data successfully but am not able to append the files due to the data contained in the footer.
Any ideas how to get rid of these rows?
Thanks in advance!
I'm a complete newbie so any help is appreciated. I'm using the GUI as my coding skills are pretty poor.
I have several xls invoices I'm trying to append for analysis. Each of them has a name at row 25 and the invoice information from row 26 onwards. Each invoice will vary in the amount of total rows. Unfortunately there's a whole bunch of useless information in the bottom few rows of each invoice that I need to get rid of (footer).
I've got several invoice files in xls format (10+ files) that I am reading through "Loop files" with a nested "Read xls"
My cell range is A25:BO1000. All rows above A25 have data I don't want (invoice headings ect ect).
I'm reading the data successfully but am not able to append the files due to the data contained in the footer.
Any ideas how to get rid of these rows?
Thanks in advance!
0
Answers
is the useless information in the bottom always the same? In other words, do you know how many rows you need to cut at the end each time? If so, you can read your Excel files, add a "Filter Examples" operator with an inverted filter afterwards and be done with it. You just need to set 2 Macros before doing it. Have a look at this example process: Regards,
Marco
For the moment the amount of useless information still occupies the same amount of rows.
How would you tackle a changing amount of rows?
Cheers,