Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have imported data from a .txt file. The data is all located in column A
and already in a proper format. I need the macro to do the following: Read each cell... when it finds the date, the cell below should be set as the reference cell. The value is not important. Copy specified ranges of cells and pastespecial - transpose next to the reference cell. Below is what I have so far. This works, but the problem lies with the absolute reference to range B3 & E4. I will need to run this on 30,000 lines referencing offset cells from a new reference point each time a date is found. If I could set the cell below a date equal to the cell location and then activate the cell for and each paste, I think that would work, but I can't figure it out. Brand new to VBA. Thanks, Adam Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(14, 0)).copy Range("b3").Select Selection.PasteSpecial Paste:=xlAll, Transpose:=True Range(ActiveCell.Offset(15, 0), ActiveCell.Offset(25, 0).Select Selection.copy Range("e4").Select Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _ , Transpose:=True |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro - save to current location vs excel default location | Excel Discussion (Misc queries) | |||
How to shift the cell based on the location of other cell? | Excel Programming | |||
automatic offset cell location when there is a value in a selected cell. | Excel Worksheet Functions | |||
Mouse Location, Movement and Spreadsheet Location | Excel Programming | |||
Populating one cell with the physcial location of a different cell | Excel Programming |