![]() |
|
#1
|
||||
|
||||
![]() I think you're going to have to post a workbook that actually contains some data, including examples showing what the problem data look like before and after processing. All that's in your present attachment is a bunch of formulae and nothing to relate them to. Re: Quote:
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#2
|
|||
|
|||
![]() Quote:
Also, I've pretty much automated the whole thing already. I'm only at one point that there is something which doesn't work. Quote:
Let me explain: I apply a filter in column W. I need to copy data from column U to column C (at the end where the first blank cell appears. This is the code I use so far (i replaced with "?" all characters which could be confidential: Code:
ActiveSheet.Range("$A$51:$W$9000").AutoFilter Field:=23, Criteria1:= _ "0ADD ???" Range("W51").Select Cells.Find(What:="0add", After:=ActiveCell, LookIn:=xlValues, LookAt:= _ xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _ False, SearchFormat:=False).Activate ActiveCell.Offset(0, -2).Activate Range(Selection, Selection.End(xlDown)).Select Selection.Copy Range("C51").Select Cells.Find(What:="blank", After:=ActiveCell, LookIn:=xlFormulas, LookAt _ :=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _ False, SearchFormat:=False).Activate Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False ActiveSheet.Range("$A$51:$W$412").AutoFilter Field:=23 At first, I tried to find a blank cell, but because of the filter, it didn't work. For instance, if I had lines 167, 289, 384 & 487 showing (because of the filter) and the last filled line was 550, when I did the find "", it didn't go to line 551, but instead changed column and went to the first empty cell. Then, I added the formula : =if(isblank(A??), "blank", "") from line 550 to something like 1000 or 1250. That didn't work either because when I apply the filter, the last line shows as 1000 (or 1250) instead of 550. I'm not sure if I'm being clear or not. If you need more explaination, please advise. Any ideas on how I could do the copying from U to C? Cross posts: http://www.excelforum.com/excel-prog...n-problem.html http://www.mrexcel.com/forum/excel-q...n-problem.html |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
coconutt | Word VBA | 6 | 09-11-2012 04:22 PM |
![]() |
coconutt | Word | 1 | 05-02-2012 01:45 PM |
![]() |
aligahk06 | Excel | 1 | 01-14-2010 01:55 PM |
What is Application Automation and How can I use it in VBA | KramerJ | Excel | 0 | 03-30-2009 12:59 PM |
COM Automation Errors | ivanm | Word | 0 | 03-23-2009 07:02 PM |