98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Microsoft Excel VBA Training and help » When do I use the with function
When do I use the with function
Resolved · Low Priority · Version 2007
Peter has attended:
Excel VBA Intro Intermediate course
When do I use the with function
when do I use the with function
RE: when do I use the with function
Hi Peter
Thank you for your question.
The With construct is used to make code more readable and therefore easier to maintain.
Example that groups commands refereing to the Font of the selection
With Selection.Font
.Name = "Verdana"
.FontStyle = "Italic"
.Size = 14
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
End With
Regards
Laura GB
Tue 27 Jan 2009: Automatically marked as resolved.
Training information:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Excel tip:Manually wrapping textTo manually wrap text, use the shortcut key Alt+Enter. |