Results 1 to 7 of 7

Thread: Solved: Change text to numbers for different sheets and workbooks

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,446
    Location
    [vba]
    Dim rrGlobal As Range
    Dim sh As Worksheet
    For each wb In Workbooks
    For Each sh In wb.Worksheets
    Sub ChangeUPCtonumbers()
    Set rrGlobal = sh.Range("A:A")
    Call ChangeUPCtonumbers1
    Next sh
    Next wb
    End Sub
    [/vba]


    __________________________________________
    UK Cambridge XL Users Conference 29-30 Nov
    http://www.exceluserconference.com/UKEUC.html
    Last edited by Bob Phillips; 11-22-2007 at 11:25 AM.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •