Hi Guys
I'm using the following macro to create cells with formulas.
Sub CreateLoginDetails()
Dim i As Long
Dim lps As Long
lps = Range("C1").Value
For i = lps To 1 Step -1
With ActiveSheet
.Range("A" & i).Insert xlShiftDown
.Range("A" & i).Formula = "TAG POS=1 TYPE=A...
Hi Guys
Thanks to Chandoo's email, I use this formula to create a zebra strips =Mod(Row(),2)=0.
I'd like to know how to keep the zebra strips in the table when I'm sorting it based on a criteria? Right now when sorting the table, I might get 2 row or even more with the same color..
Thanks...