VBA to Import Data from one file to another and transpose paste it.

chetanojha

New Member
Joined
May 3, 2016
Messages
20
Dear Forum Members,

I have a situation where I receive a lot of files from different sales depots to me on daily basis. These files are identical in nature. All files have three worksheets namely Depot Name, Operator and Order_Details. Only one column (in “Order_Details” worksheet) keeps changing. This “Order_Details” worksheet typically looks like below:

Entity
Description
Values
Deport Name
Name of the Depot
London
Truck Entry
Time when truck entered
01/12/2017 01:45:34
Truck Exit
Time when truck exited
01/12/2017 04:45:34
Total Time Take
Total Time in despatch
03:00:00 Hours
Operator
Name of the Operator
Alan
Operator Average
Average time of the operator
2.45 hours
Total Weight
Weight of the truck when exit
11 Tonnes
Total Sale value
Total Sale Value
$15000
Order Status
Is Order Completed
Completed

<tbody>
</tbody>

Now, I have a master excel sheet (Consolidate_Orders.xls) where I load all this information, received above from Order_Details worksheet, manually at the moment. This Consolidate_Orders.xls workbook looks like below. This workbook consolidates all the files which I receive daily from different depots.


Deport Name
Truck Entry
Truck Exit
Total Time Taken
Operator
Operator Average
Total Weight
Total Sale value
Order Status
London
01/12/2017 01:45:34
01/12/2017 04:45:34
03:00:00 Hours
Alan
2.45 hours
11 Tonnes
15000
Completed
Manchester
01/12/2017 01:45:34
01/12/2017 04:45:34
03:00:00 Hours
Michael
2.45 hours
12 Tonnes
1800
Completed
Swindon
01/12/2017 01:45:34
01/12/2017 04:45:34
03:00:00 Hours
Elaine
2.45 hours
13 Tonnes
2000
Completed
Swansea
01/12/2017 01:45:34
01/12/2017 04:45:34
03:00:00 Hours
Julie
2.45 hours
14 Tonnes
50000
Completed

<tbody>
</tbody>



My requirement is to have a button in the Consolidate_Orders.xls workbook/worksheet – which will then open a dialog box to ask me which file I need to import into the Consolidate_Orders.xls workbook. I will then select London_Depot file (as shown above). Once London_Depot file is selected, data from the worksheet “ORDER_DETAILS” (column name “VALUES” ) will be copied and transpose pasted in the end of the Consolidate_Orders.xls file

I checked this forum and also googled it. There are lot of material.. but I cannot make much sense of it.

Any help would be appreciated.

Thanks a lot
 
The code you've posted bears no resemblance to what you have asked for, or to what your (in code) comments say.
Therefore can you please supply an accurate sample of your data for all three sheets, along with an accurate description of what you are trying to achieve.
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi Fluff,

It is exactly doing the thing which I mentioned in my original thread. The only difference is at one place - i have to paste (transpose) the data after skipping
some columns in the row. Hence you will see something where I pasting data twice in the code.

The final piece of puzzle is when I need to extract the filename based on the string. This needs to be pasted in column A. That is why I have used below code.

Code:
[COLOR=#0000ff]'Populate Column A with the name of the file (this should be the string extracted from Fname)"
Sht.Range("A" & Sht.Rows.Count).End(xlUp).Offset(1).Resize(1, 1).Value = _
Fname [/COLOR]


All I need now is to extract the past of the "Fname" and paste it in the Column A of the row. That is what I am trying to do in the above code. Please note - I do not know how to do it and hence I have pasted the variable Fname (which contains the whole directory path of the file).

Hope this will simplify the requirement.
 
Upvote 0
I tried to add below to the above post but somehow i couldnt edit the post. hence post it as reply..

3. I receive files with three different naming convention. I want to extract string from the filename to identify the from where orders are coming to me.
a. For Filename "ORD Load ORDERS - ORD-DL-LOND-003.xls" -- (If the filename contains DL, I need to extract “ORD-DL-LOND-003” from the filename and put into column A)
b. For Filename "ORD-OL-003 (SWA 10.16).xls" -- (If the filename contains OL, I need to extract “ORD-OL-LOND-003(SWA 10.16)” from the filename and put into column A)
c. For Filename "ORD Load ORDERS - ORD-OFF-002.xls" -- (If the filename contains OFF, I need to extract “ORD-OFF-002” from the filename and put into column A)


Thanks,
 
Upvote 0
Try
Code:
   If InStr(Fname, "DL") > 1 Then
      Sht.Range("A" & NxtRw).Value = "DL"
   ElseIf InStr(Fname, "OL") > 1 Then
      Sht.Range("A" & NxtRw).Value = "OL"
   ElseIf InStr(Fname, "OFF") > 1 Then
      Sht.Range("A" & NxtRw).Value = "OFF"
   End If
 
Upvote 0

Forum statistics

Threads
1,214,620
Messages
6,120,554
Members
448,970
Latest member
kennimack

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