I'm using VBA in the Excel VBE, but c# or vb are fine. The concept should hold true across the languages.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Not sure what you mean. You want to go through from the bottom to top, instead of top to bottom? This should do:
|
|||
|
|
|
If you're working with ranges of more than a few cells and don't need to modify the cells, always consider pulling the values into an array and working with that: the interaction between code and worksheet is relatively (very) expensive. If you're working from a .NET assembly, that goes double (maybe triple, maybe more) because there are several more steps involved in a round trip. In VBA, something like this:
|
|||
|
|