build user list from spreadsheet

lordriel

Board Regular
Joined
Nov 1, 2005
Messages
68
Office Version
  1. 365
Platform
  1. Windows
I am looking the vba code to loop through a column (say column H) on sheet1 and output them in column A on sheet2.

The data in column H on sheet1 will contain multiple instances of the same usernames; I need to build a list of unique names.

I've tried a couple bulky methods be nothing seems to work the way I want it to.

any help will be appreciated
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Update your current Excel Version and platform in your profile to help you in a better way. You can use link from my signatures to quickly navigate.
 
Upvote 0
The data in column H on sheet1 will contain multiple instances of the same usernames; I need to build a list of unique names.
Rather than using a VBA I suggest use formula that will be dynamic -

Excel Formula:
=UNIQUE(Sheet1!H:H)

Just in case you want it sorted then try this -

Excel Formula:
=Sort(UNIQUE(Sheet1!H:H))
 
Upvote 0
Unfortunately I can't easily post sample data, since I can't install the necessary files due to IT restrictions.

I'm attempting to build a macro that will create a list of all users (with multiple instances) listed in one column, and build relevant data from that list from the report.

I'll continue slugging through until I find the right answer.

Thank you for your input!
 
Upvote 0

Forum statistics

Threads
1,215,092
Messages
6,123,063
Members
449,090
Latest member
fragment

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top