Hello again,
I have another difficult issue to solve.
I'm already lost in step up by myself. I would really appreciate if somebody will have enough patietnce to solve my problem.
Using Match I'm found in row 3 searching date from cel A1.
Next I'd like to copy there DATA from the same date (using transposition) from workbook (BASE) in right places to workbook FILE_1
>>>How to find position
1.(FILE_1). (row 4 date, row 5 headers)
2. BASE (column B, D)
blue cells - means (the places where I'd like to copy data)
A1 - ref date to copy
yellow cells ** it;s not something very important to do but..
yellow cells (only in row 13) - means - if fulfill cell makro could skip this cell. if cell is empty then copy there.
Thanks in advance.
I have another difficult issue to solve.
I'm already lost in step up by myself. I would really appreciate if somebody will have enough patietnce to solve my problem.
Using Match I'm found in row 3 searching date from cel A1.
Code:
Sheets("MANTLE").Activate
Dim find_date&
find_date = Application.Match(CSng(Cells(1, 1).Value), Range("D3:LO3"), 0)
On Error Resume Next
ActiveSheet.Cells(3, find_date + 3).Activate
ActiveWindow.ScrollRow = 3
Application.Goto ActiveCell, True
Next I'd like to copy there DATA from the same date (using transposition) from workbook (BASE) in right places to workbook FILE_1
>>>How to find position
1.(FILE_1). (row 4 date, row 5 headers)
2. BASE (column B, D)
blue cells - means (the places where I'd like to copy data)
A1 - ref date to copy
yellow cells ** it;s not something very important to do but..
yellow cells (only in row 13) - means - if fulfill cell makro could skip this cell. if cell is empty then copy there.
Thanks in advance.