Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 864269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:27:00+00:00 2026-05-15T09:27:00+00:00

I am trying to Join 2 separate columns from 2 different sheets to make

  • 0

I am trying to Join 2 separate columns from 2 different sheets to make a longer column from which i can then use a Vlookup from.

Sheet1
A, B, C, D, E, F, G

Sheet2
A, B, C, D, E, F, G

I want to Join(Union) Columns B from sheet1 and C from sheet2 together and find the Distinct values of the new list. I have been working on this for weeks.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T09:27:00+00:00Added an answer on May 15, 2026 at 9:27 am

    You can use ADO with Excel.

    Dim cn As Object
    Dim rs As Object
    Dim strFile As String
    Dim strCon As String
    Dim strSQL As String
    Dim s As String
    Dim i As Integer, j As Integer
    
    ''This is not the best way to refer to the workbook
    ''you want, but it is very conveient for notes
    ''It is probably best to use the name of the workbook.
    
    strFile = ActiveWorkbook.FullName
    
    ''Note that if HDR=No, F1,F2 etc are used for column names,
    ''if HDR=Yes, the names in the first row of the range
    ''can be used. 
    ''This is the Jet 4 connection string, you can get more
    ''here : http://www.connectionstrings.com/excel
    
    strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strFile _
        & ";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"";"
    
    ''Late binding, so no reference is needed
    
    Set cn = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    
    
    cn.Open strCon
    
    ''A sample query
    strSQL = "SELECT Distinct A, B C FROM ( " _
           & "SELECT A, B, C " _
           & "FROM [Sheet1$] " _
           & "UNION ALL " _
           & "SELECT A, B, C " _
           & "FROM [Sheet2$] ) As J "
    
    
    ''Open the recordset for more processing
    ''Cursor Type: 3, adOpenStatic
    ''Lock Type: 3, adLockOptimistic
    ''Not everything can be done with every cirsor type and 
    ''lock type. See http://www.w3schools.com/ado/met_rs_open.asp
    
    rs.Open strSQL, cn, 3, 3
    
    ''Write out the data to an empty sheet (no headers)
    Worksheets("Sheet3").Cells(2, 1).CopyFromRecordset rss
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 505k
  • Answers 505k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It seems to me you should use var http =… May 16, 2026 at 3:22 pm
  • Editorial Team
    Editorial Team added an answer Because %s indicates a char*, not a std::string. Use s.c_str()… May 16, 2026 at 3:22 pm
  • Editorial Team
    Editorial Team added an answer imageline, imagerotate, imagefill, and imagefilledpolygon are your friends. they're all… May 16, 2026 at 3:22 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

new to cakePHP and trying my first join. I've got one table called users
While trying problem 41 from the Euler Project, I ran across what seems to
Gday All, I have a baffling problem whilst trying to insert some chinese characters
Here is what I am trying: IQueryable query = this.MyRepository.GetShippingCollection(); IList<SomeListType> myList = query.Where(x
I am trying to sort my database in some particular order, but I want
I am trying to convert the following SQL into Subsonic syntax using the SqlQuery
I'm trying to find number of rows for two tables: Example 1 returns 81
I´m trying to create a VIEW in SQL Server 2005. The SQL code is
Never asked a question here before, I'll try to lay this out as succinctly
My real-life example is too obscure to explain, but this is a pretty good

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.