Results 1 to 9 of 9

VB Code to Save file as 97-2003 Worksheet

Threaded View

  1. #1
    Valued Forum Contributor
    Join Date
    01-18-2007
    Location
    Georgia
    MS-Off Ver
    2010
    Posts
    4,434

    VB Code to Save file as 97-2003 Worksheet

    Hello:

    Please refer to attached sheet.
    I am using below code to rearrange the Clockin-Clockout of employees.
    I need to add the code which will Save and close the file in Microsoft Excel 97-2003 Worksheet in the same location as the original after rearranging is done.
    Please let me know if any questions.
    Thanks
    Riz

    Sub TimeReport_CSR()
    ' THIS MACRO IS CONTROL+SHIFT+R
      Dim C As Long
      Dim n As Long
      Dim r As Long
      Dim Rn As Long
      Dim TimeIn As Long
      Dim TimeOut As Long
      Dim Wks1 As Worksheet
      Dim Wks2 As Worksheet
      
     'Wks1 = the original data sheet
       With ActiveWorkbook
         Set Wks1 = .Worksheets(Worksheets.Count)
         .Worksheets.Add After:=Worksheets(.Worksheets.Count)
         Set Wks2 = ActiveSheet
         Wks1.Activate
       End With
       
       Rn = 2
       n = 2
      
     'Count the Rows with IDs
       Do
         If Wks1.Cells(n, "A").Value = 0 Then Exit Do
           n = n + 1
       Loop
      
     'Quit if there are no IDs
      If n = 2 Then Exit Sub
      
     'Set the header row for Sheet2
      With Wks2
        .Cells(1, 1).Value = "ID_CODE"
        .Cells(1, 2).Value = "IN"
        .Cells(1, 3).Value = "OUT"
      End With
      
     'Copy desired data to Sheet2
      For r = 2 To n - 1
        IdCode = Wks1.Cells(r, "A").Value
          For C = 5 To 14 Step 3
            TimeIn = Wks1.Cells(r, C).Value
            TimeOut = Wks1.Cells(r, C + 1).Value
              If TimeIn = -1 Or TimeOut = -1 Then Exit For
            With Wks2
              .Cells(Rn, "A") = IdCode
              .Cells(Rn, "B") = TimeIn
              .Cells(Rn, "C") = TimeOut
            End With
            Rn = Rn + 1
          Next C
      Next r
      
      'Sort list in ascending order by ID
     With Wks2
       .Range("A2:C" & Trim(str(Rn))).Sort Key1:=.Range("A2")
       End With
    
      
    'Save the original data worksheet name
      TabName = Wks1.Name
      
    'Delete the worksheet
      Application.DisplayAlerts = False
      Wks1.Delete
      Application.DisplayAlerts = True
      
    'Rename the new sheet
      Wks2.Name = TabName
      
    End Sub
    Attached Files Attached Files
    Last edited by rizmomin; 01-23-2014 at 09:37 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. VBA Code needed to disable the Save-As feature on any Excel 2003 file
    By alchavar in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-20-2013, 08:11 PM
  2. Converting excel 2003 file ext macro file-save code to reflect excel 2007 exts
    By pmanoloff in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-20-2013, 12:17 PM
  3. Macros To Save Worksheet as New xlsx file & Save Another Worksheet As A Text File
    By KeithT in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 11-16-2011, 05:13 PM
  4. VBScript Code to Save an Excel File in Excel 97-2003 Format
    By HishamSingalaxana in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-03-2010, 04:34 AM
  5. [SOLVED] Can't save new file in Excel 2003
    By Sadretdinov Vadim in forum Excel General
    Replies: 0
    Last Post: 02-11-2005, 05:06 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1