+ Reply to Thread
Results 1 to 2 of 2

Match week and populate approve/reject text after each match row

Hybrid View

  1. #1
    Registered User
    Join Date
    03-05-2014
    Location
    Netherlands
    MS-Off Ver
    Office 365
    Posts
    2

    Match week and populate approve/reject text after each match row

    Dear Experts,

    Can you please assist me with the following.
    Attached an Excel file, the idea is that this file is an approval form per week.
    This need to be signed by 2 persons via a button (approve or reject).
    Now the part were i need assistance.
    The last 2 columns should be populated by a text (approved/rejected) trough above button, but only the rows which match the week number.
    I tried with index, match, offset but can't create a working code.
    In attached file an example for Week 6 and how related fields should be populated once related button is pressed.
    Can you please assist me?
    Many Thanks
    Lumiance
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    03-05-2014
    Location
    Netherlands
    MS-Off Ver
    Office 365
    Posts
    2

    Re: Match week and populate approve/reject text after each match row

    I have created a working code.. thank you for viewed time!

    Used code:
    Sub ApproveManager()
        Application.ScreenUpdating = False
        
        'Declare variables
        Dim iSheet As Integer, iRow As Long, iRowL As Long, SelectedWeek As Long
           
           'Set up the count as the number of filled rows in the first column and setup selected week
           iRowL = Cells(Rows.Count, 1).End(xlUp).Row
           SelectedWeek = ActiveSheet.Range("D2")
           
           'Cycle through all the cells in that column:
           For iRow = 6 To iRowL
           
              'For every cell that is not empty, search through the first column for a value that match
    
                 For iSheet = ActiveSheet.Index + 1 To Worksheets.Count
    
    'For every cell in first column that matches the week value place the relevant text in the relevant row, else nothing
    If Cells(iRow, 1).Value = SelectedWeek Then
                 Cells(iRow, 16).Font.Color = vbBlue
                 Cells(iRow, 16).Value = "Approved by " & Range("G1") & " on " & Format(Date, "DD-MMM-YY") & " at " & Format(Time, "HH:MM")
    Else
    End If
                 Next iSheet
           Next iRow
    MsgBox ("Write off for week " & SelectedWeek & " is signed, if no record for week " & SelectedWeek & " then nothing is signed")
    ActiveSheet.Range("D2").Select
           Application.ScreenUpdating = True
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Two Excel sheets trying to match text data and return the match from the second column!
    By bankcott in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 02-02-2013, 02:17 PM
  2. Replies: 13
    Last Post: 12-13-2012, 11:44 AM
  3. [SOLVED] Match text in 2 columns, if true output adjacent cell to the match.
    By kenoboy in forum Excel General
    Replies: 3
    Last Post: 07-03-2012, 09:52 AM
  4. Match 2 column fields, if match, then populate 3rd
    By elite-fusion in forum Excel General
    Replies: 1
    Last Post: 04-06-2011, 01:31 PM
  5. INDEX/MATCH formula in VBA to populate text boxes
    By Amber_D_Laws in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 02-17-2006, 12:19 PM

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