Re: $$Excel-Macros$$ My macro won't work in Excel 2013. Please help.

2014-11-12 Thread Daryl Zer0
Thanks Vabz:) I will try this. On Tuesday, November 4, 2014 12:55:50 AM UTC-7, Vabz wrote: > > Hi > > Use this code: > > Sub Macro1() > If ActiveSheet.FilterMode Then > ActiveSheet.ShowAllData > End If > Range("F4:F16").ClearContents > ActiveSheet.Range("$A$1:$E$279").AutoFilter Field:=1, Crit

Re: $$Excel-Macros$$ My macro won't work in Excel 2013. Please help.

2014-11-03 Thread Vaibhav Joshi
Hi Use this code: Sub Macro1() If ActiveSheet.FilterMode Then ActiveSheet.ShowAllData End If Range("F4:F16").ClearContents ActiveSheet.Range("$A$1:$E$279").AutoFilter Field:=1, Criteria1:=RGB(255, _ 0, 0), Operator:=xlFilterCellColor a = Range("A" & Rows.Count).End(xlUp).Row Set Rng =

$$Excel-Macros$$ My macro won't work in Excel 2013. Please help.

2014-11-03 Thread Daryl Zer0
Trying to filter a few numbers from a larger group of numbers in one cell, copy them, then paste them in another cell. Error comes up as "Runtime error '1004': Paste special Method of Range class fail". When I go to "debug", it shows this: [image: copy to clipboard] Sub Macro1() ' ' Macro1 Ma