Comments on: 7 Quick and Easy VBA Macros & Tips for Excel https://www.setfiremedia.com/blog/7-quick-easy-vba-macros-tips-for-excel Hot ideas for the web. Sat, 16 May 2009 17:00:03 +0000 hourly 1 https://wordpress.org/?v=5.5.6 By: Tagz | "7 Quick and Easy VBA Macros Tips for Excel | The Matchbox" | Comments https://www.setfiremedia.com/blog/7-quick-easy-vba-macros-tips-for-excel/comment-page-1#comment-1050 Sat, 16 May 2009 17:00:03 +0000 http://www.setfiremedia.com/blog/?p=80#comment-1050 […] [upmod] [downmod] 7 Quick and Easy VBA Macros Tips for Excel | The Matchbox (www.setfiremedia.com) 1 points posted 6 months, 3 weeks ago by SixSixSix tags imported excel […]

]]>
By: serdarb https://www.setfiremedia.com/blog/7-quick-easy-vba-macros-tips-for-excel/comment-page-1#comment-982 Wed, 07 Jan 2009 13:17:21 +0000 http://www.setfiremedia.com/blog/?p=80#comment-982 very nice post…

]]>
By: bobochan https://www.setfiremedia.com/blog/7-quick-easy-vba-macros-tips-for-excel/comment-page-1#comment-871 Thu, 23 Oct 2008 19:39:18 +0000 http://www.setfiremedia.com/blog/?p=80#comment-871 In this instance:

Dim inty1,inty2,inty3 as Integer

inty3 is the only Integer, the other two default to being Variants.

Try this instead:

Dim inty1 As Integer, inty2 As Integer, inty3 As Integer

Personally I prefer:

Dim inty(3) As Integer
-or-
Dim inty1%, inty2%, inty3%

]]>