billandrew
Well-known Member
- Joined
- Mar 9, 2014
- Messages
- 743
Could someone explain or direct to - How does Index work with Evaluate in this code.
Thank You
Dim Lastrow As Integer
With ActiveSheet
Lastrow = .Cells(Rows.Count, "C").End(xlUp).Row
.Range("C2:F" & Lastrow).Value = .Evaluate("INDEX(proper(C2:F" & Lastrow & "),)")
End With
End Sub
Thank You
Dim Lastrow As Integer
With ActiveSheet
Lastrow = .Cells(Rows.Count, "C").End(xlUp).Row
.Range("C2:F" & Lastrow).Value = .Evaluate("INDEX(proper(C2:F" & Lastrow & "),)")
End With
End Sub