Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 10-27-2017, 01:07 PM
NoSparks NoSparks is offline Master tab data list parsed out to applicable cells in applicable worksheets Windows 7 64bit Master tab data list parsed out to applicable cells in applicable worksheets Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

Quote:
question - is there a way that the info can be copied into merged cells A1, D1 and G1 without overwriting the 'Type:', 'Ser no:' and 'User:' text?
I assume you mean like this
Code:
Sub Create_Name_WorkSheets()
Dim i As Integer
Dim ws As Worksheet
Dim sh As Worksheet
Set ws = Sheets("Template")
Set sh = Sheets("CFD Basic Info")
Application.ScreenUpdating = 0

    For i = 5 To Range("A" & Rows.Count).End(xlUp).Row
        Sheets("Template").Copy After:=sh

        With ActiveSheet
            .Name = sh.Range("A" & i).Value
            .Range("A1").Value = .Range("A1").Value & "  " & sh.Range("B" & i).Value
            .Range("D1").Value = .Range("D1").Value & "  " & sh.Range("A" & i).Value
            .Range("G1").Value = .Range("G1").Value & "  " & sh.Range("C" & i).Value
        End With

    Next i
    
Create_Hyperlinks
End Sub

Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Master tab data list parsed out to applicable cells in applicable worksheets Column B Cell 25 of all worksheets copies data found in the lower cells ... rpcalo Excel 3 03-10-2016 03:38 AM
Master tab data list parsed out to applicable cells in applicable worksheets Move Data from Master List to Sheets with City Name meggenm Excel 3 01-28-2016 10:18 AM
Master tab data list parsed out to applicable cells in applicable worksheets Creating Word document that automatically inputs text into applicable fields, jjfromnj Word 3 12-04-2015 10:00 AM
Master tab data list parsed out to applicable cells in applicable worksheets seprate process data from main master list Santhosh AMASL Excel 1 01-12-2015 09:33 AM
Linking Workbooks/Entire Worksheets to Identical in Master taxacct Excel 2 10-01-2014 11:22 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 02:55 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft