Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== With...End With ====== This saves you from typing what comes after "With" every time you need a property or method. <code vb> With Worksheets("Sheet 1") .Range("A10").Value = .Range("C2").Value End With ' the above would be the same as: ' Worksheets("Sheet 1").Range("A10").Value = Worksheets("Sheet 1").Range("C2").Value </code> docs/programming/office_vba/with_end_with.txt Last modified: 2008/08/03 00:25by 127.0.0.1