Comment on $16bn health agency managed finances with Excel spreadsheet.
endofline@lemmy.ca 4 weeks agoIt’s not… Try to write a formula range which covers only lower half of the column which is typical setup in summing numbers( avoiding headers ), limits in columns and records, ever changing formats across versions… You asking for a disaster to happen which happens very often
silverhand@reddthat.com 4 weeks ago
endofline@lemmy.ca 4 weeks ago
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?
nimble@lemmy.blahaj.zone 4 weeks ago
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.
silverhand@reddthat.com 4 weeks ago
I highly doubt that, also, people in corporate finance do not use libraries to process excel files.
=OFFSET(range_name, 7, COLUMNS(range_name), ROWS(range_name)-9)
whererange_name
is the label given to the whole table.