Paste Data from One Excel Into First Empty Column

Drivingman

New Member
Joined
Jan 26, 2012
Messages
19
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
HI All

This is going to be long question and I will try and break down into many steps. I know what I want, just lacking a little (or lot) of knowledge to do it.

1 - I need to paste data from one sheet into my results file daily. The data that is copied is a csv report that has dynamic name depending on date it is ran. So thought would be easier if I just had the data copied already.
This data is pasted into sheet "Daily Import" into the next empty column. Currently one data dump takes from column A to R, so the next days data starts at S, and so on.
So what VBA would I need in my file to do this automatically.

2 - I have created the formulas for my first days pull down.


CDMonTuesWedThursFriSat
Day 0Open=COUNTIFS('Daily Import'!I:I,C$3,'Daily Import'!O:O,D$3)
Stage 1 ReviewClosed=COUNTIFS('Daily Import'!I:I,C$4,'Daily Import'!O:O,D$3)
Stage 2 ReviewError=COUNTIFS('Daily Import'!I:I,C$6,'Daily Import'!O:O,D$3)
Stage 3 Review
Stage 4 Review
Post Stage 4

<tbody>
</tbody>

The formulas I have in Monday are shown above. These are without any other posts, and I need these to change ready for the second week of posts. But first, I need the formulas in for Tuesday - Saturday.
I could manually put these in, but after one week pasting data I will be needing to redo them all.
So how will I get dynamic formulas based on how many pastes that step 1 have done.

Week 1 Mon - number of pastes - 1 (so formulas as above)
Week 1 Tues - number of pastes - 2 (so all formulas within Daily Import need moving 17 columns)
Week 1 Wed - 3 pastes so formulas moved on another 17 columns

Week 2 - think this will be the nightmare, and may need some very creative thinking.
Thinking outside box here and maybe helping - in cell A1 I have week number 1,2,3 and so on. And then the formula could be based on that cell, and a second cell detailing the day of week that we are uploading?

3 - Once a full weeks worth of data is completed then need something (VBA) to pull the data into similar row sheet.....
But that can be done once I have couple of weeks data. Want 1 & 2 sorted first.


Do not worry about column D that much. This is for what the formula is asking for.
Hope this makes sense.
TYIA for any help you can give me. :)
 
Last edited:

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi ALl

Just a little note on this one.
I have sorted out the paste part now.

So now just to change the formulas of the table.

How could I setup a formula to look for specific columns based on a formula?

The column numbers will be (9+(cell O1-1)x17) changing each time.
Will it be INDEX? I cant use match as this will repeat several times in each daily post.
 
Upvote 0
I sorted the issue with dynamic range.
My formula needed a new table to take some of the calculation then I sorted it with INDEX.

=COUNTIFS(INDEX('Daily Import'!$1:$1048576,,E$3),$I$14,INDEX('Daily Import'!1:$1048576,,E$4),$J$14)

E3 and E4 did the dynamic calculation as every time I tried it together then got #VALUE error.
 
Upvote 0

Forum statistics

Threads
1,215,656
Messages
6,126,055
Members
449,284
Latest member
fULMIEX

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