Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8650679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:52:58+00:00 2026-06-12T13:52:58+00:00

Scenario: I can’t post the actual workbook due to sensitive materials but I’ll explain

  • 0

Scenario: I can’t post the actual workbook due to sensitive materials but I’ll explain it as best as possible.

Each Sheet is divided into branches i.e.: Sheet2 is Branch 2, Sheet3 is Branch 3 and so on.
For each sheet the column are the same.
Column A has the branch number in it.
Column B has irrelevant information so i just hide that column.
Column C has a system number (specific to each account.

Intention: I want to create another sheet called CallOuts.
I want to copy some rows (from various branches) and paste them onto the ‘Master sheet’ (CallOuts) I can work on the CallOuts sheet instead of going to each branch. So that whenever I edit a cell it will also update/change that exact same cell in the branch sheet and vise versa with the master sheet.

Problem: I know MS Exccel has a “Paste Special” function where it adds the cell. The problem with that is it links the cell# so if I sort the Master sheet it will replace the row into the wrong branch sheet.

E.g.: If System# J112 is in branch 2 sheet, row 2 and I have the link pasted in Row 4 in the master sheet, if I make updates on the Master sheet and then re-sort it and the System# now moves to Row 2 (on the master sheet) whatever is in Row 4(on the master) will now be in Row 2, Branch 2 sheet.

I was thinking maybe a macro where I could copy and paste the entire row from the master sheet. Do some type of case selection to check which branch is in column A and then find the same system # on the branch sheet then paste the whole row.

My VBA level is novice at best so any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:53:00+00:00Added an answer on June 12, 2026 at 1:53 pm

    OK, So I saw your attempt below. I am not sure how your code works but it seems like you were on the right track. However, I don’t think the Case syntax is appropriate for this situation. You simply need a macro that will read what is in your “CallOuts” sheet and use that data to update your individual branch sheets. This macro should work for you:

    Sub UpdateRecordsFromMasterSheet()
    
    Dim wksht As Worksheet
    Dim wkb As Workbook
    Dim row As Range
    Dim Row_to_Update As Range
    
    Dim sysnum As Variant
    
    Set wbk = ThisWorkbook
    
    Application.ScreenUpdating = False
    
    For Each row In Sheets("CallOuts").UsedRange.Rows
        row.EntireRow.Copy
        sysnum = row.Cells(1, 3).Value
        For Each wksht In ActiveWorkbook.Worksheets
            For Each Row_to_Update In wksht.UsedRange.Rows
                If Row_to_Update.Cells(1, 3).Value = sysnum Then
                    Row_to_Update.PasteSpecial
                End If
            Next Row_to_Update
        Next wksht
    Next row
    
    Application.ScreenUpdating = True
    
    End Sub
    

    This assumes you have your system number in column “C”. So here is what I am imagining: Each time you assign an employee a bunch of rows – your employee updates those rows – and then you paste that data back into the “CallOuts” sheet. Then you run this macro and it will update the individual branch sheets based on what is in the “CallOuts” sheet.

    If your a visual person here is how it will look:

    Here is the updated callouts sheet:
    CallOutsSheet

    Here is how the branches will look before the macro:
    BeforeMacro

    Here is the updated branch after the macro runs:
    AfterMacro

    Try it out and let me know how it works. Note: this is just a start to show you how to do something like this – you could make this process more efficient by having the macro loop through the actual workbooks that the employees submit to you so you wouldn’t have to copy and paste the data into your “CallOuts” sheet every time. Good Luck.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for best practices. Here's the scenario: Customers can pay for one or
I've been spoiled by the SqlDataSource, but I'm in a scenario where I can't
I think I've got a pretty simple scenario but can't seem to grasp how
I have a scenario where combobox can have same string values. for exa combo
How would I create the following scenario that rails can provide for carrierwave, using
Can someone give me a real-world scenario of a method/function with a string argument
Can I get a complete simple scenario i.e. tutorial that suggest how this should
Can any one tell me how to solve the following scenario in Asp.net application.
I can't seem to get an XPath expression to work for my scenario. I
Scenario: User X1 logged in. He can not be logged again. up to previous

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.