Skip to main content

All Questions

Tagged with
11 votes
1 answer
283 views

Find all differences between 2 strings

I pulled this out of my code bucket and dusted it off earlier today in response to a post over on SO that made me cringe. This was originally written to highlight changes in Excel cells in real time ...
Comintern's user avatar
  • 4,192
3 votes
1 answer
119 views

Comparing two arrays and printing results as a collection of a class

This is really my first time using a class and I originally wrote it without the class and without refactoring. This is to take two inputs (csv), place the data in arrays and then compare the arrays. ...
Raystafarian's user avatar
  • 7,159
1 vote
2 answers
217 views

Splitting Excel workbook sheets

Running Office 2007, I have master workbook with data, which I: Split master sheet data to new sheets for every salesmen Create new workbook (with 1 sheet) Put sheets of salesmen to an array ...
mauek unak's user avatar
3 votes
1 answer
55 views

Comparing and pasting ranges of spreadsheet cells

I have a moderate size sub-procedure where I am calling multiple functions to feed values into other functions. I feel there may be a better or more concise way to present and run this module, but ...
Iain Saunders's user avatar
4 votes
2 answers
1k views

A 'flexible' VBA approach to lookups using arrays, scripting dictionary and user input

In my previous post Optimise compare and match method using scripting.dictionary in VBA I wanted to address optimising the scripting.dictionary approach I was using and I feel I have achieved that (...
Iain Saunders's user avatar
2 votes
1 answer
4k views

Optimise compare and match method using scripting.dictionary in VBA

In my previous post I was looking for a better solution to write a single column of a 2D array into a worksheet besides looping between code and worksheet and finally managed to achieve that. On ...
Iain Saunders's user avatar
2 votes
3 answers
5k views

Writing a particular column of a two-dimension array to a worksheet

I had some great feedback on my code previously here and I was hoping that I could get some further help with writing a column of the array to the worksheet. I have an example here where I write one ...
Iain Saunders's user avatar
4 votes
2 answers
100 views

Comparing dates from sheets

I am looking to increase the speed of this Excel VBA Nested Loop. The loop compares dates from one sheet to a secondary sheet. If they match, I change the border around the cell to highlight it. It ...
jb3700's user avatar
  • 41
5 votes
3 answers
97 views

CopyOf2DArray (Values Only)

Purpose: Given a 2-Dimensional Array, return a copy of the Array. In VBA, if I just Set newArray = oldArray then newArray is ...
Kaz's user avatar
  • 8,800
2 votes
1 answer
44 views

Converting values to Dates in column

I'm not happy about my code, but is the better way that I find, I'm not happy because I see that there are many code repetitions and when any change is easy to make mistakes. Do you think you can do ...
Fabrizio's user avatar
  • 307
2 votes
2 answers
161 views

Importing data into Excel

Is there an easier way of importing data into an Excel array or other data structure? I've tried researching collections but I have found the documentation hard to comprehend. MSDN The code I have ...
phillipsk's user avatar
  • 123
3 votes
2 answers
3k views

Using Array to store calculations in VBA

I have the following VBA code, which works perfectly well to calculate "q" However, the code is very slow and that is due to the large number of q's being calculated (roughly 7.2m q's are being ...
SRS's user avatar
  • 41
4 votes
2 answers
8k views

Assigning entire column of data to specific column of an array in VBA

The below code I have written is to allow me to Sum the results data for every year from 1 to 1000 over a range of 5000 locations. although a 1000 years seems extreme, for the application I am using ...
Kettle's user avatar
  • 41
3 votes
2 answers
122 views

Data Table Report Class

Most of the VBA I write is to produce tabulated reports from spreadsheet data. So, here is my attempt at creating a CLS_Data_Report class. Properties: a 2-...
Kaz's user avatar
  • 8,800
6 votes
1 answer
147 views

Get Worksheet Data Array (Standard Methods)

I'm re-writing my module of Standard Methods. Virtually every project I do begins with grabbing some number of Data Tables and putting them in arrays. So, this is my general "Get Worksheet Data" ...
Kaz's user avatar
  • 8,800

15 30 50 per page