How can I add columns of data from one table to another from a lookup ID number in CSV/Excel?

Greg

I am trying to recreate an old ASP member directory and put it into a Wordpress plugin (Ultimate Member) and need to change the data structure before importing.

I exported the old data into a CSV/Excel file that has a couple tables(sheets):

  1. Member info table containing 4,000 members (each has a Firm ID field (a number i.e. 344); multiple members can belong to a Firm)

  2. Firm table with 1,000 firms (first field is Firm ID)

In the old app the Firm ID number in the Member table calls up all of the fields from the Firm table. I need this to be all in one table to import. If I did this manually I would have to look at the Firm ID number for all 4,000 members and then paste in that firms fields from the Firm table into the Member table. Is there an easier way to do it?

Cook

If I understand correctly, you have a column A with all members, a column B with all IDs and you need a column C with the names if the firms.

If your firm list is in the same document in a second sheet (let's say 'Sheet2', you can type in cell C2:

=vlookup(B2;Sheet2!A:B;2;FALSE)

Then just drag the cell down (double click on the bottom right corner)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I copy rows from one to another table with a different number of columns

From Java

How can I add column from one table to another in Clickhouse?

From Dev

How to get all columns from one table and only one column from another table with ID ? - MySql

From Dev

how can I get data from a table that is liked to a table that is liked to another one it self?

From Dev

How do i copy data from one table to another table?

From Dev

How do i copy data from one table to another table?

From Dev

How do I get id number from another table?

From Dev

MySQL add data from one table to another

From Dev

How can I append data from one spreadsheet to another one?

From Dev

How can I get number from each id and append to another data attribute using jquery?

From Dev

SPServices CAMLQuery is returning the ows ID with the value on lookup columns. How can I remove the ID from the results

From Dev

How can I parse data from one column in a table and put the result into another with SQL Server?

From Dev

r - data.table join and then add all columns from one table to another

From Dev

How can I add a column from one dataframe to another dataframe?

From Dev

How can I add a new attribute from another table to a serializer?

From Dev

How can I add a new attribute from another table to a serializer?

From Dev

How can I Access Session data from one bundle to another

From Dev

How can I pass xml data from one sproc to another?

From Dev

Can I use a computed column in a table to fetch data from another table columns

From Dev

How to insert specific columns and rows of data to an existing table from one table to another?

From Dev

Insert Data From One Table to Another Table and Add New Values

From Dev

How to pass list of columns from one table to another table in bigquery

From Dev

Procedure to insert data from one column into two columns in another table

From Dev

Can i copy data from one database table to another already existing database table sql server?

From Dev

How can I populate a form with results from one table which can be edited and saved to another table

From Dev

how to insert data from another table with id from my table

From Dev

i need a function to append data from one table to another table

From Dev

How can I extract data from one pixel in an image and assign this data to another pixel in another image?

From Dev

How to add a value from one table to a particular row in another table?

Related Related

  1. 1

    How can I copy rows from one to another table with a different number of columns

  2. 2

    How can I add column from one table to another in Clickhouse?

  3. 3

    How to get all columns from one table and only one column from another table with ID ? - MySql

  4. 4

    how can I get data from a table that is liked to a table that is liked to another one it self?

  5. 5

    How do i copy data from one table to another table?

  6. 6

    How do i copy data from one table to another table?

  7. 7

    How do I get id number from another table?

  8. 8

    MySQL add data from one table to another

  9. 9

    How can I append data from one spreadsheet to another one?

  10. 10

    How can I get number from each id and append to another data attribute using jquery?

  11. 11

    SPServices CAMLQuery is returning the ows ID with the value on lookup columns. How can I remove the ID from the results

  12. 12

    How can I parse data from one column in a table and put the result into another with SQL Server?

  13. 13

    r - data.table join and then add all columns from one table to another

  14. 14

    How can I add a column from one dataframe to another dataframe?

  15. 15

    How can I add a new attribute from another table to a serializer?

  16. 16

    How can I add a new attribute from another table to a serializer?

  17. 17

    How can I Access Session data from one bundle to another

  18. 18

    How can I pass xml data from one sproc to another?

  19. 19

    Can I use a computed column in a table to fetch data from another table columns

  20. 20

    How to insert specific columns and rows of data to an existing table from one table to another?

  21. 21

    Insert Data From One Table to Another Table and Add New Values

  22. 22

    How to pass list of columns from one table to another table in bigquery

  23. 23

    Procedure to insert data from one column into two columns in another table

  24. 24

    Can i copy data from one database table to another already existing database table sql server?

  25. 25

    How can I populate a form with results from one table which can be edited and saved to another table

  26. 26

    how to insert data from another table with id from my table

  27. 27

    i need a function to append data from one table to another table

  28. 28

    How can I extract data from one pixel in an image and assign this data to another pixel in another image?

  29. 29

    How to add a value from one table to a particular row in another table?

HotTag

Archive