Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Split a datadump and create new worksheets.

I have a data dump which consist of Leads and helpers in column A and
different data for each of the helpers in column B, C, D and E.
I am trying to make a new sheet per Lead But it sems to make for every on in
Column A, How can i get this to only take the Leads who have "Lead:" before
their name.

The script i am using is as follows.

Sub SplitDump()

Dim strMain As String
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

test = InStr(1, c.Value, "Lead:")

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = c.Value
strSubAddr = "'" & c.Value & "'!A1"
Sheets(strMain).Select
Next c

End Sub

I there a way where i can loop though to say creat a new worksheet for lead
1 and add all the helpers and their respective data in B,C,D and E and then
go to the next lead.

The table looks something like this....
A b c d
Lead: -1
Helper: 1-1 data 1-1-1 data 1-2-1 data 1-3-1
Helper: 1-2 data 1-1-2 data 1-2-2 data 1-3-2
Helper: 1-3 data 1-1-3 data 1-2-3 data 1-3-3
Helper: 1-4 data 1-1-4 data 1-2-4 data 1-3-4
Helper: 1-5 data 1-1-5 data 1-2-5 data 1-3-5
Helper: 1-6 data 1-1-6 data 1-2-6 data 1-3-6
Helper: 1-7 data 1-1-7 data 1-2-7 data 1-3-7
Helper: 1-8 data 1-1-8 data 1-2-8 data 1-3-8
Helper: 1-9 data 1-1-9 data 1-2-9 data 1-3-9
Helper: 1-10 data 1-1-10 data 1-2-10 data 1-3-10
Lead: -2
Helper: 2-1 data 2-1-1 data 2-2-1 data 2-3-1
Helper: 2-2 data 2-1-2 data 2-2-2 data 2-3-2
Helper: 2-3 data 2-1-3 data 2-2-3 data 2-3-3
Helper: 2-4 data 2-1-4 data 2-2-4 data 2-3-4
Helper: 2-5 data 2-1-5 data 2-2-5 data 2-3-5
Helper: 2-6 data 2-1-6 data 2-2-6 data 2-3-6
Helper: 2-7 data 2-1-7 data 2-2-7 data 2-3-7
Helper: 2-8 data 2-1-8 data 2-2-8 data 2-3-8
Helper: 2-9 data 2-1-9 data 2-2-9 data 2-3-9
Helper: 2-10 data 2-1-10 data 2-2-10 data 2-3-10
Lead: -3
Helper: 3-1 data 3-1-1 data 3-2-1 data 3-3-1
Helper: 3-2 data 3-1-2 data 3-2-2 data 3-3-2
Helper: 3-3 data 3-1-3 data 3-2-3 data 3-3-3
Helper: 3-4 data 3-1-4 data 3-2-4 data 3-3-4
Helper: 3-5 data 3-1-5 data 3-2-5 data 3-3-5
Helper: 3-6 data 3-1-6 data 3-2-6 data 3-3-6
Helper: 3-7 data 3-1-7 data 3-2-7 data 3-3-7
Helper: 3-8 data 3-1-8 data 3-2-8 data 3-3-8
Helper: 3-9 data 3-1-9 data 3-2-9 data 3-3-9
Helper: 3-10 data 3-1-10 data 3-2-10 data 3-3-10


Please help
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Split a datadump and create new worksheets.

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy


"Sjakkie" wrote:

I have a data dump which consist of Leads and helpers in column A and
different data for each of the helpers in column B, C, D and E.
I am trying to make a new sheet per Lead But it sems to make for every on in
Column A, How can i get this to only take the Leads who have "Lead:" before
their name.

The script i am using is as follows.

Sub SplitDump()

Dim strMain As String
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

test = InStr(1, c.Value, "Lead:")

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = c.Value
strSubAddr = "'" & c.Value & "'!A1"
Sheets(strMain).Select
Next c

End Sub

I there a way where i can loop though to say creat a new worksheet for lead
1 and add all the helpers and their respective data in B,C,D and E and then
go to the next lead.

The table looks something like this....
A b c d
Lead: -1
Helper: 1-1 data 1-1-1 data 1-2-1 data 1-3-1
Helper: 1-2 data 1-1-2 data 1-2-2 data 1-3-2
Helper: 1-3 data 1-1-3 data 1-2-3 data 1-3-3
Helper: 1-4 data 1-1-4 data 1-2-4 data 1-3-4
Helper: 1-5 data 1-1-5 data 1-2-5 data 1-3-5
Helper: 1-6 data 1-1-6 data 1-2-6 data 1-3-6
Helper: 1-7 data 1-1-7 data 1-2-7 data 1-3-7
Helper: 1-8 data 1-1-8 data 1-2-8 data 1-3-8
Helper: 1-9 data 1-1-9 data 1-2-9 data 1-3-9
Helper: 1-10 data 1-1-10 data 1-2-10 data 1-3-10
Lead: -2
Helper: 2-1 data 2-1-1 data 2-2-1 data 2-3-1
Helper: 2-2 data 2-1-2 data 2-2-2 data 2-3-2
Helper: 2-3 data 2-1-3 data 2-2-3 data 2-3-3
Helper: 2-4 data 2-1-4 data 2-2-4 data 2-3-4
Helper: 2-5 data 2-1-5 data 2-2-5 data 2-3-5
Helper: 2-6 data 2-1-6 data 2-2-6 data 2-3-6
Helper: 2-7 data 2-1-7 data 2-2-7 data 2-3-7
Helper: 2-8 data 2-1-8 data 2-2-8 data 2-3-8
Helper: 2-9 data 2-1-9 data 2-2-9 data 2-3-9
Helper: 2-10 data 2-1-10 data 2-2-10 data 2-3-10
Lead: -3
Helper: 3-1 data 3-1-1 data 3-2-1 data 3-3-1
Helper: 3-2 data 3-1-2 data 3-2-2 data 3-3-2
Helper: 3-3 data 3-1-3 data 3-2-3 data 3-3-3
Helper: 3-4 data 3-1-4 data 3-2-4 data 3-3-4
Helper: 3-5 data 3-1-5 data 3-2-5 data 3-3-5
Helper: 3-6 data 3-1-6 data 3-2-6 data 3-3-6
Helper: 3-7 data 3-1-7 data 3-2-7 data 3-3-7
Helper: 3-8 data 3-1-8 data 3-2-8 data 3-3-8
Helper: 3-9 data 3-1-9 data 3-2-9 data 3-3-9
Helper: 3-10 data 3-1-10 data 3-2-10 data 3-3-10


Please help

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Split a datadump and create new worksheets.

Thanks A million
sorry forgot to note that the "lead:" contain is as follows.

"Lead: name / Telephone"
How can i remove the "/ telephone" from this. Without the "/" It works Great.


"Tom Ogilvy" wrote:

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy


"Sjakkie" wrote:

I have a data dump which consist of Leads and helpers in column A and
different data for each of the helpers in column B, C, D and E.
I am trying to make a new sheet per Lead But it sems to make for every on in
Column A, How can i get this to only take the Leads who have "Lead:" before
their name.

The script i am using is as follows.

Sub SplitDump()

Dim strMain As String
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

test = InStr(1, c.Value, "Lead:")

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = c.Value
strSubAddr = "'" & c.Value & "'!A1"
Sheets(strMain).Select
Next c

End Sub

I there a way where i can loop though to say creat a new worksheet for lead
1 and add all the helpers and their respective data in B,C,D and E and then
go to the next lead.

The table looks something like this....
A b c d
Lead: -1
Helper: 1-1 data 1-1-1 data 1-2-1 data 1-3-1
Helper: 1-2 data 1-1-2 data 1-2-2 data 1-3-2
Helper: 1-3 data 1-1-3 data 1-2-3 data 1-3-3
Helper: 1-4 data 1-1-4 data 1-2-4 data 1-3-4
Helper: 1-5 data 1-1-5 data 1-2-5 data 1-3-5
Helper: 1-6 data 1-1-6 data 1-2-6 data 1-3-6
Helper: 1-7 data 1-1-7 data 1-2-7 data 1-3-7
Helper: 1-8 data 1-1-8 data 1-2-8 data 1-3-8
Helper: 1-9 data 1-1-9 data 1-2-9 data 1-3-9
Helper: 1-10 data 1-1-10 data 1-2-10 data 1-3-10
Lead: -2
Helper: 2-1 data 2-1-1 data 2-2-1 data 2-3-1
Helper: 2-2 data 2-1-2 data 2-2-2 data 2-3-2
Helper: 2-3 data 2-1-3 data 2-2-3 data 2-3-3
Helper: 2-4 data 2-1-4 data 2-2-4 data 2-3-4
Helper: 2-5 data 2-1-5 data 2-2-5 data 2-3-5
Helper: 2-6 data 2-1-6 data 2-2-6 data 2-3-6
Helper: 2-7 data 2-1-7 data 2-2-7 data 2-3-7
Helper: 2-8 data 2-1-8 data 2-2-8 data 2-3-8
Helper: 2-9 data 2-1-9 data 2-2-9 data 2-3-9
Helper: 2-10 data 2-1-10 data 2-2-10 data 2-3-10
Lead: -3
Helper: 3-1 data 3-1-1 data 3-2-1 data 3-3-1
Helper: 3-2 data 3-1-2 data 3-2-2 data 3-3-2
Helper: 3-3 data 3-1-3 data 3-2-3 data 3-3-3
Helper: 3-4 data 3-1-4 data 3-2-4 data 3-3-4
Helper: 3-5 data 3-1-5 data 3-2-5 data 3-3-5
Helper: 3-6 data 3-1-6 data 3-2-6 data 3-3-6
Helper: 3-7 data 3-1-7 data 3-2-7 data 3-3-7
Helper: 3-8 data 3-1-8 data 3-2-8 data 3-3-8
Helper: 3-9 data 3-1-9 data 3-2-9 data 3-3-9
Helper: 3-10 data 3-1-10 data 3-2-10 data 3-3-10


Please help

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Split a datadump and create new worksheets.

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
iloc = Instr(1,s,"/",vbTextcompare)
s = Trim(Left(s,iloc-1))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy



"Sjakkie" wrote:

Thanks A million
sorry forgot to note that the "lead:" contain is as follows.

"Lead: name / Telephone"
How can i remove the "/ telephone" from this. Without the "/" It works Great.


"Tom Ogilvy" wrote:

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy


"Sjakkie" wrote:

I have a data dump which consist of Leads and helpers in column A and
different data for each of the helpers in column B, C, D and E.
I am trying to make a new sheet per Lead But it sems to make for every on in
Column A, How can i get this to only take the Leads who have "Lead:" before
their name.

The script i am using is as follows.

Sub SplitDump()

Dim strMain As String
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

test = InStr(1, c.Value, "Lead:")

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = c.Value
strSubAddr = "'" & c.Value & "'!A1"
Sheets(strMain).Select
Next c

End Sub

I there a way where i can loop though to say creat a new worksheet for lead
1 and add all the helpers and their respective data in B,C,D and E and then
go to the next lead.

The table looks something like this....
A b c d
Lead: -1
Helper: 1-1 data 1-1-1 data 1-2-1 data 1-3-1
Helper: 1-2 data 1-1-2 data 1-2-2 data 1-3-2
Helper: 1-3 data 1-1-3 data 1-2-3 data 1-3-3
Helper: 1-4 data 1-1-4 data 1-2-4 data 1-3-4
Helper: 1-5 data 1-1-5 data 1-2-5 data 1-3-5
Helper: 1-6 data 1-1-6 data 1-2-6 data 1-3-6
Helper: 1-7 data 1-1-7 data 1-2-7 data 1-3-7
Helper: 1-8 data 1-1-8 data 1-2-8 data 1-3-8
Helper: 1-9 data 1-1-9 data 1-2-9 data 1-3-9
Helper: 1-10 data 1-1-10 data 1-2-10 data 1-3-10
Lead: -2
Helper: 2-1 data 2-1-1 data 2-2-1 data 2-3-1
Helper: 2-2 data 2-1-2 data 2-2-2 data 2-3-2
Helper: 2-3 data 2-1-3 data 2-2-3 data 2-3-3
Helper: 2-4 data 2-1-4 data 2-2-4 data 2-3-4
Helper: 2-5 data 2-1-5 data 2-2-5 data 2-3-5
Helper: 2-6 data 2-1-6 data 2-2-6 data 2-3-6
Helper: 2-7 data 2-1-7 data 2-2-7 data 2-3-7
Helper: 2-8 data 2-1-8 data 2-2-8 data 2-3-8
Helper: 2-9 data 2-1-9 data 2-2-9 data 2-3-9
Helper: 2-10 data 2-1-10 data 2-2-10 data 2-3-10
Lead: -3
Helper: 3-1 data 3-1-1 data 3-2-1 data 3-3-1
Helper: 3-2 data 3-1-2 data 3-2-2 data 3-3-2
Helper: 3-3 data 3-1-3 data 3-2-3 data 3-3-3
Helper: 3-4 data 3-1-4 data 3-2-4 data 3-3-4
Helper: 3-5 data 3-1-5 data 3-2-5 data 3-3-5
Helper: 3-6 data 3-1-6 data 3-2-6 data 3-3-6
Helper: 3-7 data 3-1-7 data 3-2-7 data 3-3-7
Helper: 3-8 data 3-1-8 data 3-2-8 data 3-3-8
Helper: 3-9 data 3-1-9 data 3-2-9 data 3-3-9
Helper: 3-10 data 3-1-10 data 3-2-10 data 3-3-10


Please help

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Split a datadump and create new worksheets.

In case the / character doesn't exits in some cases:

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long, iloc as Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
iloc = Instr(1,s,"/",vbTextcompare)
if iloc < 0 then
s = Trim(Left(s,iloc-1))
end if
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy


"Tom Ogilvy" wrote:

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
iloc = Instr(1,s,"/",vbTextcompare)
s = Trim(Left(s,iloc-1))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy



"Sjakkie" wrote:

Thanks A million
sorry forgot to note that the "lead:" contain is as follows.

"Lead: name / Telephone"
How can i remove the "/ telephone" from this. Without the "/" It works Great.


"Tom Ogilvy" wrote:

Sub SplitDump()

Dim sh As Worksheet, s As String
Dim i As Long
Dim c As Range
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
i = 2
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

If InStr(1, c.Value, "Lead:") Then
s = Trim(Right(c, Len(c) - 5))
Set sh = Sheets.Add(After:=Sheets(Sheets.Count))
sh.Name = s
i = 2
Else
c.Resize(1, 5).Copy sh.Cells(i, "A")
i = i + 1
End If
Next c

End Sub

--
Regards,
Tom Ogilvy


"Sjakkie" wrote:

I have a data dump which consist of Leads and helpers in column A and
different data for each of the helpers in column B, C, D and E.
I am trying to make a new sheet per Lead But it sems to make for every on in
Column A, How can i get this to only take the Leads who have "Lead:" before
their name.

The script i am using is as follows.

Sub SplitDump()

Dim strMain As String
Dim strAddress As String
Dim test As Integer

strMain = ActiveSheet.Name
For Each c In Range("a1:a60")
strAddress = c.Address
If Len(c.Value) = 0 Then
MsgBox ("Finished")
Exit Sub
End If

test = InStr(1, c.Value, "Lead:")

Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = c.Value
strSubAddr = "'" & c.Value & "'!A1"
Sheets(strMain).Select
Next c

End Sub

I there a way where i can loop though to say creat a new worksheet for lead
1 and add all the helpers and their respective data in B,C,D and E and then
go to the next lead.

The table looks something like this....
A b c d
Lead: -1
Helper: 1-1 data 1-1-1 data 1-2-1 data 1-3-1
Helper: 1-2 data 1-1-2 data 1-2-2 data 1-3-2
Helper: 1-3 data 1-1-3 data 1-2-3 data 1-3-3
Helper: 1-4 data 1-1-4 data 1-2-4 data 1-3-4
Helper: 1-5 data 1-1-5 data 1-2-5 data 1-3-5
Helper: 1-6 data 1-1-6 data 1-2-6 data 1-3-6
Helper: 1-7 data 1-1-7 data 1-2-7 data 1-3-7
Helper: 1-8 data 1-1-8 data 1-2-8 data 1-3-8
Helper: 1-9 data 1-1-9 data 1-2-9 data 1-3-9
Helper: 1-10 data 1-1-10 data 1-2-10 data 1-3-10
Lead: -2
Helper: 2-1 data 2-1-1 data 2-2-1 data 2-3-1
Helper: 2-2 data 2-1-2 data 2-2-2 data 2-3-2
Helper: 2-3 data 2-1-3 data 2-2-3 data 2-3-3
Helper: 2-4 data 2-1-4 data 2-2-4 data 2-3-4
Helper: 2-5 data 2-1-5 data 2-2-5 data 2-3-5
Helper: 2-6 data 2-1-6 data 2-2-6 data 2-3-6
Helper: 2-7 data 2-1-7 data 2-2-7 data 2-3-7
Helper: 2-8 data 2-1-8 data 2-2-8 data 2-3-8
Helper: 2-9 data 2-1-9 data 2-2-9 data 2-3-9
Helper: 2-10 data 2-1-10 data 2-2-10 data 2-3-10
Lead: -3
Helper: 3-1 data 3-1-1 data 3-2-1 data 3-3-1
Helper: 3-2 data 3-1-2 data 3-2-2 data 3-3-2
Helper: 3-3 data 3-1-3 data 3-2-3 data 3-3-3
Helper: 3-4 data 3-1-4 data 3-2-4 data 3-3-4
Helper: 3-5 data 3-1-5 data 3-2-5 data 3-3-5
Helper: 3-6 data 3-1-6 data 3-2-6 data 3-3-6
Helper: 3-7 data 3-1-7 data 3-2-7 data 3-3-7
Helper: 3-8 data 3-1-8 data 3-2-8 data 3-3-8
Helper: 3-9 data 3-1-9 data 3-2-9 data 3-3-9
Helper: 3-10 data 3-1-10 data 3-2-10 data 3-3-10


Please help



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
Can I quickly split up worksheets into different files? amithere Excel Discussion (Misc queries) 4 December 10th 12 04:06 PM
how can I split the worksheet in two different worksheets Eva New Users to Excel 1 July 23rd 08 10:11 AM
How to split up one spreadsheet into multiple worksheets Gloria Lewis Excel Discussion (Misc queries) 1 March 3rd 08 05:18 PM
Separate/Split all the worksheets in a workbook into different fil tnacius rottie Excel Discussion (Misc queries) 0 September 14th 07 06:16 PM
split results to multiple worksheets Rich Excel Worksheet Functions 3 April 11th 05 07:51 PM


All times are GMT +1. The time now is 07:50 AM.

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

About Us

"It's about Microsoft Excel"