Results 1 to 7 of 7

Plot Data from 1 sheet to another

Threaded View

  1. #1
    Registered User
    Join Date
    07-24-2017
    Location
    xxxx
    MS-Off Ver
    2007
    Posts
    13

    Plot Data from 1 sheet to another

    Hello guys need your assistance badly on this on how i can auto plot the data from one sheet to another
    I have a VBA code on the module portion of the VBA but it seems that it is not working. See below VBA.

    Sub Plot_Leave()
    
    Dim rowctr As Long
    Dim rowctr2 As Long
    Dim colctr2 As Long
    
    Dim TempMonth As Long
    Dim tReq As String
    
    rowctr = 2
    Do While Sheets("Leave_Raw").Cells(rowctr, 1).Value <> ""
        'TempMonth = Format(Sheets("Call_Out_Raw").Cells(rowctr, 5).Value, "MM")
         TempMonth = Sheets("Leave_Raw").Cells(rowctr, 11).Value
        'MsgBox TempMonth
        
        Select Case TempMonth
        
           Case 42736 To 42763
               Set mWs = Sheets("Cycle_1")
            Case 42764 To 42791
                Set mWs = Sheets("Cycle_2")
            Case 42792 To 42819
                Set mWs = Sheets("Cycle_3")
            Case 42820 To 42847
                Set mWs = Sheets("Cycle_4")
            Case 42848 To 42875
                Set mWs = Sheets("Cycle_5")
            Case 42876 To 42903
                Set mWs = Sheets("Cycle_6")
            Case 42904 To 42931
                Set mWs = Sheets("Cycle_7")
            Case 42932 To 42959
                Set mWs = Sheets("Cycle_8")
            Case 42960 To 42987
                Set mWs = Sheets("Cycle_9")
            Case 42988 To 43015
                Set mWs = Sheets("Cycle_10")
           Case 43016 To 43043
               Set mWs = Sheets("Cycle_11")
            Case 43044 To 43071
                Set mWs = Sheets("Cycle_12")
            Case 43072 To 43100
                Set mWs = Sheets("Cycle_13")
        
           Case Else
                'MsgBox ("Month Not Found")
                MsgBox TempMonth
         End Select
        
        
            rowctr2 = 4
            Do While mWs.Cells(rowctr2, 1).Value <> ""
            
               If mWs.Cells(rowctr2, 1).Value = Sheets("Leave_Raw").Cells(rowctr, 3).Value Then
                    
                    colctr2 = 1
                    Do While mWs.Cells(4, colctr2).Value <> ""
                    
                        If mWs.Cells(4, colctr2).Value = Sheets("Leave_Raw").Cells(rowctr, 5).Value Then
                                             
                            tReq = Sheets("Leave_Raw").Cells(rowctr, 4).Value
                            
                            Select Case tReq
                                
                                Case "Vacation Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "VL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(141, 180, 226)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                             
                                Case "Half Day Vacation Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "H/VL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(184, 204, 228)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                             
                                Case "Holiday Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "HOL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(252, 213, 180)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                             
                                Case "Wedding Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "WL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(255, 192, 0)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                
                                Case "Solo Parent Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "SPL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(0, 112, 192)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(255, 255, 255)
                                
                                Case "Short Notice VL"
                                mWs.Cells(rowctr2, colctr2).Value = "VL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(184, 204, 228)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                                         
                                Case "Cancellation"
                                mWs.Cells(rowctr2, colctr2).Value = mWs.Cells(rowctr2, 6).Value
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(255, 255, 255)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                
                                Case "Maternity Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "ML"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(146, 208, 80)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                                
                            
                                Case "Paternity Leave"
                                mWs.Cells(rowctr2, colctr2).Value = "PL"
                                mWs.Cells(rowctr2, colctr2).Interior.Color = RGB(146, 208, 80)
                                mWs.Cells(rowctr2, colctr2).Font.Color = RGB(0, 0, 0)
                            
                                                    
                                                         
                                Case Else
                                MsgBox ("Month Not Found")
                                
                                End Select
                                
                                mWs.Cells(rowctr2, colctr2).Font.Size = 8
                                mWs.Cells(rowctr2, colctr2).Font.Name = "Arial"
                                mWs.Cells(rowctr2, colctr2).HorizontalAlignment = xlCenter
                                
                            End If
                        
            
                        colctr2 = colctr2 + 1
                        
                   Loop
                    Exit Do
    
                End If
                rowctr2 = rowctr2 + 1
            Loop
    
        
        rowctr = rowctr + 1
    Loop
    
    Sheets("temp").Cells.ClearContents
    Sheets("temp2").Cells.ClearContents
    Sheets("temp3").Cells.ClearContents
    
    
    End Sub
    Last edited by jeanemik; 12-13-2017 at 04:17 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 2
    Last Post: 03-10-2016, 06:41 AM
  2. [SOLVED] How to plot data in one sheet into another sheet
    By Conair1 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 07-04-2013, 02:22 PM
  3. Replies: 2
    Last Post: 07-26-2012, 09:27 AM
  4. How can I plot multiple data set on a single contour plot
    By hafziebone in forum Excel General
    Replies: 0
    Last Post: 02-11-2012, 02:02 PM
  5. How can I plot multiple data set on a single contour plot
    By hafziebone in forum Excel General
    Replies: 0
    Last Post: 02-10-2012, 11:27 PM
  6. how do i plot data consisting of 1000 lines in excel sheet
    By novice in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 11-29-2005, 09:55 AM
  7. [SOLVED] Can I copy x-y scatter plot data direct from one plot to another?
    By Chris in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 06-03-2005, 09:05 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