Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default Merging Data

Is it possible to do the following.

I have two separate spreadsheets that contain data in. Each record
within the spreadsheet has a unique identifier (Info Record).

Want to be able to merge the data from the two spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record key. So where
the same Info Record numbers appear in each spreadsheet the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to Plant Currency
5300000000 0000443XSH 1004 00.00.0000 GB01 GBP
5300000001 0000444XSH 1004 00.00.0000 GB01 GBP
5300000002 67065257SH 1004 00.00.0000 GB01 GBP
5300000003 67105745SH 1004 00.00.0000 GB01 GBP
5300000004 0000442XSH 1004 00.00.0000 GB01 GBP
5300000005 0001002XSH 1004 00.00.0000 GB01 GBP
5300000006 0000755SH 1004 00.00.0000 GB01 GBP
5300000007 0001003XSH 1004 00.00.0000 GB01 GBP
5300000008 0001000XSH 1004 00.00.0000 GB01 GBP
5300000009 0001001XSH 1004 00.00.0000 GB01 GBP
5300000010 50654952BO 1004 00.00.0000 GB01 GBP
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Merging Data

I think the below will work for your purpose. It's not
optimized so it may runs longer than it needs to. It works
with any number of sheets and will add a sheet with the
common id's at the first position.
Hope this helps,
Felix

Sub CommonIDs()
Dim MySheet As Worksheet
Dim EndArray As Double
Dim MyArray
Dim i, ii, iii, x1, NumOfSheets, NumOfOccurance

'Find the maximum number of ids
For Each MySheet In ActiveWorkbook.Worksheets
EndArray = EndArray + MySheet.UsedRange.Rows.Count
NumOfSheets = NumOfSheets + 1
Next

'Create an Array of the maximum size
ReDim MyArray(EndArray, NumOfSheets)

'Reset the Number of Sheets
NumOfSheets = 0
'Fill the array with ID's
For Each MySheet In ActiveWorkbook.Worksheets
NumOfSheets = NumOfSheets + 1
For i = 1 To MySheet.UsedRange.Rows.Count
x1 = CStr(MySheet.Cells(i, 1).Value)
For ii = 0 To EndArray
If x1 = MyArray(ii, 0) Then
'Set a flag if an ID was found in the sheet
MyArray(ii, NumOfSheets) = 1
Exit For
ElseIf MyArray(ii, 0) = Empty Then
MyArray(ii, 0) = x1
MyArray(ii, NumOfSheets) = 1
Exit For
End If
Next
Next
Next

'Select the first sheet
Sheets(1).Select
'Add a new sheet
Sheets.Add

'Fill the sheet with unique ID's
For i = 0 To EndArray
NumOfOccurance = 0
For ii = 1 To NumOfSheets
NumOfOccurance = NumOfOccurance + MyArray(i, ii)
Next
If NumOfOccurance = NumOfSheets Then
iii = iii + 1
ActiveSheet.Cells(iii, 1).Value = MyArray(i, 0)
End If
If MyArray(i, 0) = Empty Then Exit For
Next

End Sub

-----Original Message-----
Is it possible to do the following.

I have two separate spreadsheets that contain data in.

Each record
within the spreadsheet has a unique identifier (Info

Record).

Want to be able to merge the data from the two

spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record

key. So where
the same Info Record numbers appear in each spreadsheet

the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to

Plant Currency
5300000000 0000443XSH 1004 00.00.0000

GB01 GBP
5300000001 0000444XSH 1004 00.00.0000

GB01 GBP
5300000002 67065257SH 1004 00.00.0000

GB01 GBP
5300000003 67105745SH 1004 00.00.0000

GB01 GBP
5300000004 0000442XSH 1004 00.00.0000

GB01 GBP
5300000005 0001002XSH 1004 00.00.0000

GB01 GBP
5300000006 0000755SH 1004 00.00.0000

GB01 GBP
5300000007 0001003XSH 1004 00.00.0000

GB01 GBP
5300000008 0001000XSH 1004 00.00.0000

GB01 GBP
5300000009 0001001XSH 1004 00.00.0000

GB01 GBP
5300000010 50654952BO 1004 00.00.0000

GB01 GBP
.

  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Tom is offline
external usenet poster
 
Posts: 44
Default Merging Data

Al

There is also a comparing tool available, that exactly completes your task.
Lokk at the following link:

http://www.synkronizer.com/e/tutorial_merging.html

Tom



"Al Mackay" schrieb im Newsbeitrag
om...
Is it possible to do the following.

I have two separate spreadsheets that contain data in. Each record
within the spreadsheet has a unique identifier (Info Record).

Want to be able to merge the data from the two spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record key. So where
the same Info Record numbers appear in each spreadsheet the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to Plant Currency
5300000000 0000443XSH 1004 00.00.0000 GB01 GBP
5300000001 0000444XSH 1004 00.00.0000 GB01 GBP
5300000002 67065257SH 1004 00.00.0000 GB01 GBP
5300000003 67105745SH 1004 00.00.0000 GB01 GBP
5300000004 0000442XSH 1004 00.00.0000 GB01 GBP
5300000005 0001002XSH 1004 00.00.0000 GB01 GBP
5300000006 0000755SH 1004 00.00.0000 GB01 GBP
5300000007 0001003XSH 1004 00.00.0000 GB01 GBP
5300000008 0001000XSH 1004 00.00.0000 GB01 GBP
5300000009 0001001XSH 1004 00.00.0000 GB01 GBP
5300000010 50654952BO 1004 00.00.0000 GB01 GBP



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Merging Data

The below code will do what you want with all sheets in a
workbook (1 to n) and then create a new sheet with the
common ID's. My appology if this message gets posted twice.
Felix

Sub CommonIDs()
Dim MySheet As Worksheet
Dim EndArray As Double
Dim MyArray
Dim i, ii, iii, x1, NumOfSheets, NumOfOccurance
'Find the maximum number of combinations
For Each MySheet In ActiveWorkbook.Worksheets
EndArray = EndArray + MySheet.UsedRange.Rows.Count
NumOfSheets = NumOfSheets + 1
Next

'Create an Array of the maximum size
ReDim MyArray(EndArray, NumOfSheets)

'Reset the Number of Sheets
NumOfSheets = 0
'Fill the array with ID's
For Each MySheet In ActiveWorkbook.Worksheets
NumOfSheets = NumOfSheets + 1
For i = 1 To MySheet.UsedRange.Rows.Count
x1 = CStr(MySheet.Cells(i, 1).Value)
For ii = 0 To EndArray
If x1 = MyArray(ii, 0) Then
'Set a flag if an ID was found in the sheet
MyArray(ii, NumOfSheets) = 1
Exit For
ElseIf MyArray(ii, 0) = Empty Then
MyArray(ii, 0) = x1
MyArray(ii, NumOfSheets) = 1
Exit For
End If
Next
Next
Next

'Select the first sheet
Sheets(1).Select
'Add a new sheet
Sheets.Add

'Fill the sheet with unique ID's
For i = 0 To EndArray
NumOfOccurance = 0
For ii = 1 To NumOfSheets
NumOfOccurance = NumOfOccurance + MyArray(i, ii)
Next
If NumOfOccurance = NumOfSheets Then
iii = iii + 1
ActiveSheet.Cells(iii, 1).Value = MyArray(i, 0)
End If
If MyArray(i, 0) = Empty Then Exit For
Next

End Sub
-----Original Message-----
Is it possible to do the following.

I have two separate spreadsheets that contain data in.

Each record
within the spreadsheet has a unique identifier (Info

Record).

Want to be able to merge the data from the two

spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record

key. So where
the same Info Record numbers appear in each spreadsheet

the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to

Plant Currency
5300000000 0000443XSH 1004 00.00.0000

GB01 GBP
5300000001 0000444XSH 1004 00.00.0000

GB01 GBP
5300000002 67065257SH 1004 00.00.0000

GB01 GBP
5300000003 67105745SH 1004 00.00.0000

GB01 GBP
5300000004 0000442XSH 1004 00.00.0000

GB01 GBP
5300000005 0001002XSH 1004 00.00.0000

GB01 GBP
5300000006 0000755SH 1004 00.00.0000

GB01 GBP
5300000007 0001003XSH 1004 00.00.0000

GB01 GBP
5300000008 0001000XSH 1004 00.00.0000

GB01 GBP
5300000009 0001001XSH 1004 00.00.0000

GB01 GBP
5300000010 50654952BO 1004 00.00.0000

GB01 GBP
.

  #5   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Merging Data


-----Original Message-----
Al

There is also a comparing tool available, that exactly

completes your task.
Lokk at the following link:

http://www.synkronizer.com/e/tutorial_merging.html

Tom



"Al Mackay" schrieb im Newsbeitrag
. com...
Is it possible to do the following.

I have two separate spreadsheets that contain data in.

Each record
within the spreadsheet has a unique identifier (Info

Record).

Want to be able to merge the data from the two

spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record

key. So where
the same Info Record numbers appear in each spreadsheet

the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to Plant Currency
5300000000 0000443XSH 1004 00.00.0000 GB01 GBP
5300000001 0000444XSH 1004 00.00.0000 GB01 GBP
5300000002 67065257SH 1004 00.00.0000 GB01 GBP
5300000003 67105745SH 1004 00.00.0000 GB01 GBP
5300000004 0000442XSH 1004 00.00.0000 GB01 GBP
5300000005 0001002XSH 1004 00.00.0000 GB01 GBP
5300000006 0000755SH 1004 00.00.0000 GB01 GBP
5300000007 0001003XSH 1004 00.00.0000 GB01 GBP
5300000008 0001000XSH 1004 00.00.0000 GB01 GBP
5300000009 0001001XSH 1004 00.00.0000 GB01 GBP
5300000010 50654952BO 1004 00.00.0000 GB01 GBP



.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Merging Data

The below should do what you want for all sheets in a
workbook (1 to n). It will create a new sheet with the
common ID's at the end. This may get posted twice, sorry
about that.

Sub CommonIDs()
Dim MySheet As Worksheet
Dim EndArray As Double
Dim MyArray
Dim i, ii, iii, x1, NumOfSheets, NumOfOccurance
'Find the maximum number of combinations
For Each MySheet In ActiveWorkbook.Worksheets
EndArray = EndArray + MySheet.UsedRange.Rows.Count
NumOfSheets = NumOfSheets + 1
Next

'Create an Array of the maximum size
ReDim MyArray(EndArray, NumOfSheets)

'Reset the Number of Sheets
NumOfSheets = 0
'Fill the array with ID's
For Each MySheet In ActiveWorkbook.Worksheets
NumOfSheets = NumOfSheets + 1
For i = 1 To MySheet.UsedRange.Rows.Count
x1 = CStr(MySheet.Cells(i, 1).Value)
For ii = 0 To EndArray
If x1 = MyArray(ii, 0) Then
'Set a flag if an ID was found in the sheet
MyArray(ii, NumOfSheets) = 1
Exit For
ElseIf MyArray(ii, 0) = Empty Then
MyArray(ii, 0) = x1
MyArray(ii, NumOfSheets) = 1
Exit For
End If
Next
Next
Next

'Select the first sheet
Sheets(1).Select
'Add a new sheet
Sheets.Add

'Fill the sheet with unique ID's
For i = 0 To EndArray
NumOfOccurance = 0
For ii = 1 To NumOfSheets
NumOfOccurance = NumOfOccurance + MyArray(i, ii)
Next
If NumOfOccurance = NumOfSheets Then
iii = iii + 1
ActiveSheet.Cells(iii, 1).Value = MyArray(i, 0)
End If
If MyArray(i, 0) = Empty Then Exit For
Next

End Sub
-----Original Message-----
Is it possible to do the following.

I have two separate spreadsheets that contain data in.

Each record
within the spreadsheet has a unique identifier (Info

Record).

Want to be able to merge the data from the two

spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record

key. So where
the same Info Record numbers appear in each spreadsheet

the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to

Plant Currency
5300000000 0000443XSH 1004 00.00.0000

GB01 GBP
5300000001 0000444XSH 1004 00.00.0000

GB01 GBP
5300000002 67065257SH 1004 00.00.0000

GB01 GBP
5300000003 67105745SH 1004 00.00.0000

GB01 GBP
5300000004 0000442XSH 1004 00.00.0000

GB01 GBP
5300000005 0001002XSH 1004 00.00.0000

GB01 GBP
5300000006 0000755SH 1004 00.00.0000

GB01 GBP
5300000007 0001003XSH 1004 00.00.0000

GB01 GBP
5300000008 0001000XSH 1004 00.00.0000

GB01 GBP
5300000009 0001001XSH 1004 00.00.0000

GB01 GBP
5300000010 50654952BO 1004 00.00.0000

GB01 GBP
.

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default Merging Data

Thanks so much for your help on this - this is really appreciated.

Many Thanks, Al.

"Felix Rode" wrote in message ...
The below code will do what you want with all sheets in a
workbook (1 to n) and then create a new sheet with the
common ID's. My appology if this message gets posted twice.
Felix

Sub CommonIDs()
Dim MySheet As Worksheet
Dim EndArray As Double
Dim MyArray
Dim i, ii, iii, x1, NumOfSheets, NumOfOccurance
'Find the maximum number of combinations
For Each MySheet In ActiveWorkbook.Worksheets
EndArray = EndArray + MySheet.UsedRange.Rows.Count
NumOfSheets = NumOfSheets + 1
Next

'Create an Array of the maximum size
ReDim MyArray(EndArray, NumOfSheets)

'Reset the Number of Sheets
NumOfSheets = 0
'Fill the array with ID's
For Each MySheet In ActiveWorkbook.Worksheets
NumOfSheets = NumOfSheets + 1
For i = 1 To MySheet.UsedRange.Rows.Count
x1 = CStr(MySheet.Cells(i, 1).Value)
For ii = 0 To EndArray
If x1 = MyArray(ii, 0) Then
'Set a flag if an ID was found in the sheet
MyArray(ii, NumOfSheets) = 1
Exit For
ElseIf MyArray(ii, 0) = Empty Then
MyArray(ii, 0) = x1
MyArray(ii, NumOfSheets) = 1
Exit For
End If
Next
Next
Next

'Select the first sheet
Sheets(1).Select
'Add a new sheet
Sheets.Add

'Fill the sheet with unique ID's
For i = 0 To EndArray
NumOfOccurance = 0
For ii = 1 To NumOfSheets
NumOfOccurance = NumOfOccurance + MyArray(i, ii)
Next
If NumOfOccurance = NumOfSheets Then
iii = iii + 1
ActiveSheet.Cells(iii, 1).Value = MyArray(i, 0)
End If
If MyArray(i, 0) = Empty Then Exit For
Next

End Sub
-----Original Message-----
Is it possible to do the following.

I have two separate spreadsheets that contain data in.

Each record
within the spreadsheet has a unique identifier (Info

Record).

Want to be able to merge the data from the two

spreadsheets (Sheet 1 +
Sheet 2) into one (Sheet 3) based on the Info Record

key. So where
the same Info Record numbers appear in each spreadsheet

the data is
all brought together into a third spreadsheet.

Appreciate your help on this.

Kind Regards, Al Mackay. ( )


** SHEET 1 **
Info record Material Vendor Valid to
5300000000 0000443XSH 1004 00.00.0000
5300000001 0000444XSH 1004 00.00.0000
5300000002 67065257SH 1004 00.00.0000
5300000003 67105745SH 1004 00.00.0000
5300000004 0000442XSH 1004 00.00.0000
5300000005 0001002XSH 1004 00.00.0000
5300000006 0000755SH 1004 00.00.0000
5300000007 0001003XSH 1004 00.00.0000
5300000008 0001000XSH 1004 00.00.0000
5300000009 0001001XSH 1004 00.00.0000
5300000010 50654952BO 1004 00.00.0000


** SHEET 2 **
Info Record Plant Currency
5300000000 GB01 GBP
5300000001 GB01 GBP
5300000002 GB01 GBP
5300000003 GB01 GBP
5300000004 GB01 GBP
5300000005 GB01 GBP
5300000006 GB01 GBP
5300000007 GB01 GBP
5300000008 GB01 GBP
5300000009 GB01 GBP
5300000010 GB01 GBP
5300000011 GB01 GBP
5300000012 GB01 GBP
5300000013 GB01 GBP
5300000014 GB01 GBP



** FINAL LOOK - SHEET 3 **
Info record Material Vendor Valid to

Plant Currency
5300000000 0000443XSH 1004 00.00.0000

GB01 GBP
5300000001 0000444XSH 1004 00.00.0000

GB01 GBP
5300000002 67065257SH 1004 00.00.0000

GB01 GBP
5300000003 67105745SH 1004 00.00.0000

GB01 GBP
5300000004 0000442XSH 1004 00.00.0000

GB01 GBP
5300000005 0001002XSH 1004 00.00.0000

GB01 GBP
5300000006 0000755SH 1004 00.00.0000

GB01 GBP
5300000007 0001003XSH 1004 00.00.0000

GB01 GBP
5300000008 0001000XSH 1004 00.00.0000

GB01 GBP
5300000009 0001001XSH 1004 00.00.0000

GB01 GBP
5300000010 50654952BO 1004 00.00.0000

GB01 GBP
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Merging data from 2 data excel sheets Joe Excel Discussion (Misc queries) 2 November 3rd 09 01:08 PM
Merging Data John Excel Discussion (Misc queries) 1 June 19th 09 03:05 PM
Merging multiple columns of data into one column of data Archangel Excel Discussion (Misc queries) 7 February 24th 07 10:02 AM
Should Merging workbooks pick up new data or only edited data? Peggy L. Excel Worksheet Functions 0 January 13th 05 05:31 PM
Scanning for Duplicate Data in a Column, Merging Data and Finally Removing All Duplicates...? : VB : Excel Programming 2 August 24th 03 02:22 PM


All times are GMT +1. The time now is 10:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"