Entries by admin

Excel VBA Function to SUM Unique Numbers Only – Unique SUMIF Function

First add this code to your VBA Function  

  Then use it in your worksheet like this A B C D E 1 CA 11 CA =SUMIFUNIQUENUMS($B$1:$B$7,$A$1:$A$7,D1) 2 NY 14 NY 29 3 NY 15 IN 0 4 CA 11 5 CA 11 6 CA 14 7 CA 11 Sheet1   Posted by […]

VBA – Unique List of Data That Appears At Least Once in All Columns – Excel Macro

Use this VBA code to extract a unique list of items that appear inside of multi-column data. The criteria is that the data needs to appear at least once in each column. This one has user friendly interface to run on any size data and get the results wherever user picks in the worksheet.

[…]

VBA – Loop Through All Textboxes in a Form – Excel Macro

This VBA code will loop though all textboxes in your userform that are following the naming convention textBox[x] (ex. textBox1, textBox2, textBox3 ….. textBox255)

Posted by Excel Instructor: http://www.houstoncomputerclasses.com/excel-classes/

VBA – Loop Through All (.txt) Files in a User Specified Directory – Excel Macro

This VBA code will loop though all the text files in a directory that user picks from an application box and print a list of them. This code can be modified to be used in many scenarios for any file type.  

Posted by Excel Instructor: http://www.houstoncomputerclasses.com/excel-classes/

VBA – Get All Numbers in a Text String & Incresae by One – Excel Macro

The following procedure will take any numbers within text and increase them by 1. For Example: For20Example51Text will transform into For21Example52Text  

Posted by Excel Instructor: http://www.houstoncomputerclasses.com/excel-classes/

Libraries in Chicago

List of Chicago Libraries with address and phone number. NAME Address PHONE Albany Park 3401 W. Foster Avenue, Chicago, IL 60625 (773) 539-5450 Altgeld 13281 S. Corliss Avenue, Chicago, IL 60827 (312) 747-3270 Archer Heights 5055 S. Archer Avenue, Chicago, IL 60632 (312) 747-9241 Austin 5615 W. Race Avenue, Chicago, IL 60644 (312) 746-5038 Austin-Irving […]

VBA – Delete Every Other Row – Odd or Even – Excel Macro

This Excel Macro will go through all the cells in column A, find the last cell that has data in it, and then delete every other row in that data range. To Delete Odd Rows

To Delete Even Rows

Posted by Excel Instructor: http://www.houstoncomputerclasses.com/excel-classes/