MAMIBUSSOL
Board Regular
- Joined
- Jun 2, 2011
- Messages
- 95
I have the following layout
A B C D
date supplier Type Liq
21JUN A 10
21JUN B 10
19JUN C
19JUN D 10
i need to filter out the blanks in column D
update column C with text
so when I remove the filter I should end up with the following based on the above example
A B C D
date supplier type Liq
21JUN A text 10
21JUN B text 10
19JUN C
19JUN D text 10
I can perform this manually but I would rather do this with coding? Any ideas?
I have the following coding to perform the filter, however I am unsure how to do the update part
A B C D
date supplier Type Liq
21JUN A 10
21JUN B 10
19JUN C
19JUN D 10
i need to filter out the blanks in column D
update column C with text
so when I remove the filter I should end up with the following based on the above example
A B C D
date supplier type Liq
21JUN A text 10
21JUN B text 10
19JUN C
19JUN D text 10
I can perform this manually but I would rather do this with coding? Any ideas?
I have the following coding to perform the filter, however I am unsure how to do the update part
Code:
Cells.Select
Selection.AutoFilter
ActiveSheet.Range("$A$1:$IC$46").AutoFilter Field:=8, Criteria1:="<>"