VBA transfer data in specific cells to table (based on conditions)

Decon6

New Member
Joined
Jul 18, 2019
Messages
1
Hello everyone,

I need your help with writing a VBA-script to automate a daily work.
Every day I receive multiple data entry sheets (Excel) by mail. I have to extract the data in the sheets to a table in another workbook stored on my drive.
All sheets have the same format, which means the data is always in the same cell on every data entry sheet (eg The name is always in cell B4).

A simplified example of the sheet:

KeyAB123
Name:Alisha
Age:25
Weight:53kg

<tbody>
</tbody>

What I want to achieve:

Step 1
- Copy the unique key (always in cell C1) on the data entry sheet.
- Go to the workbook with the table and search for the column named "Key".
- Find the last entered row in that column and paste the key in the next available row.

Step 2
- Copy the name (always in cell B3) on the data entry sheet.
- Go to the workbook with the table and search for the column named "Name".
- Search for the row on which you entered the unique key.
- Paste the name on the right spot (in the column "Name" and in the row of the unique key).

:eek: The search function is very important, because the columns can change in the target table.

Step 3 (till ...)
-
Repeat step 2 for all other values on the data entry sheet.


Is there any possibility to achieve this?

Thanks in advance.

Greetings
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi,
Welcome to Forum.

Work approach you outline seems time consuming & tedious.

As a suggestion, If your colleagues have access to a folder on your corporate network then you could with some VBA, set their templates to write the data directly to a master workbook (like a database) You could then just extract records from master workbook as required in one go.

Dave
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,386
Members
448,891
Latest member
tpierce

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