this post was submitted on 10 Mar 2025
230 points (96.0% liked)
Technology
65819 readers
5194 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Anybody who used ANY library to process xslx knows MS keeps changing it :-) About ranges... can you give me the range for whole columns minus 6 first records and 9 last records?
Would you like this in excel formula, VBA, or python?
It can be done in all. You're only proving the other poster's point. Excel isn't necessarily the best option for tech literate people but given the tech illiteracy of many offices, it isn't surprising they use excel for stuff like this.
I highly doubt that, also, people in corporate finance do not use libraries to process excel files.
=OFFSET(first_cell, 7, COLUMNS(range_name), ROWS(range_name)-9-7)
whererange_name
is the label given to the whole table andfirst_cell
is its first cell.Such a weird argument that you've responding to, as the answer (as you provided) is so easy and well known.