Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default IMPORTING WORD TO EXCEL

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default IMPORTING WORD TO EXCEL

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default IMPORTING WORD TO EXCEL

Hi Tom,
Works to a point. When they gave me the list they left spaces between each
address.
TO: Medical Director
Saint Marys Hospital
1216 Second Street SW
Rochester, MN 55902


TO: Medical Director
Mayo Clinic
4500 San Pablo Road
Jacksonville, FL 32224

can I eliminate the space in the code or do I need to do it in word first.
If so how do I take out the space in word.

"Tom Ogilvy" wrote:

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default IMPORTING WORD TO EXCEL

the code depends on there being a single blank row between each address.

If you have multiple blank rows between each address, then

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng.Areas
Set r = cell(cell.count).Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub

--
Regards,
Tom Ogilvy


"gwbdirect" wrote:

Hi Tom,
Works to a point. When they gave me the list they left spaces between each
address.
TO: Medical Director
Saint Marys Hospital
1216 Second Street SW
Rochester, MN 55902


TO: Medical Director
Mayo Clinic
4500 San Pablo Road
Jacksonville, FL 32224

can I eliminate the space in the code or do I need to do it in word first.
If so how do I take out the space in word.

"Tom Ogilvy" wrote:

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default IMPORTING WORD TO EXCEL

FANTASTIC-Thanks for your help!!!
1 more thing if you don't mind.
I get list set up in label format in word that I need to put in excel. Is it
possible to take it and put it in excel. This code won't work because I can't
paste it into excel in 1 row because the records are 3 across 10 down like
example below:

Mr. Joe Roach Steve Cummings
Chris Gedrich
Chairman €“ Board of Selectmen Deputy Fire Chief Project
Executive
Town of Sharon Sharon Fire Department Suffolk
Construction
Town Hall 92 South Main Street
65 Allerton Street
90 South Main Street Sharon, MA 02067
Boston, MA 02119
Sharon, MA 02067




"Tom Ogilvy" wrote:

the code depends on there being a single blank row between each address.

If you have multiple blank rows between each address, then

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng.Areas
Set r = cell(cell.count).Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub

--
Regards,
Tom Ogilvy


"gwbdirect" wrote:

Hi Tom,
Works to a point. When they gave me the list they left spaces between each
address.
TO: Medical Director
Saint Marys Hospital
1216 Second Street SW
Rochester, MN 55902


TO: Medical Director
Mayo Clinic
4500 San Pablo Road
Jacksonville, FL 32224

can I eliminate the space in the code or do I need to do it in word first.
If so how do I take out the space in word.

"Tom Ogilvy" wrote:

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default IMPORTING WORD TO EXCEL

Hi Tom,
Hate to bug you again but I am getting an error message.
RUNTIME ERROR "1004"
Application-defined or Object defined error
Set r = cell(cell.Count).Offset(1, 0)
I have records that go down to row 51,237
do I need to change something in this code line for it to capture all of
this information.

"Tom Ogilvy" wrote:

the code depends on there being a single blank row between each address.

If you have multiple blank rows between each address, then

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng.Areas
Set r = cell(cell.count).Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub

--
Regards,
Tom Ogilvy


"gwbdirect" wrote:

Hi Tom,
Works to a point. When they gave me the list they left spaces between each
address.
TO: Medical Director
Saint Marys Hospital
1216 Second Street SW
Rochester, MN 55902


TO: Medical Director
Mayo Clinic
4500 San Pablo Road
Jacksonville, FL 32224

can I eliminate the space in the code or do I need to do it in word first.
If so how do I take out the space in word.

"Tom Ogilvy" wrote:

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default IMPORTING WORD TO EXCEL

I am using the programming you gave below but can't get it to work on this
type of foreign address:
Herrn
Guido Aulbach
Assessor jur.
ZĂĽrich Gruppe
Solmsstrasse 27-37
D-60252 Frankfurt am Main

Herrn
Ralph Brand
Senior Vice President
AIG Europe
Tour AIG
92079 Paris La DĂ©fense
2 Cedex
France

Sub ParseData()
'
' WORDTOEXCEL Macro
' Macro recorded 09/12/2007 by Adam Kelly
'

'
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng.Areas
Set r = cell(cell.Count).Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, " ", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub

Can you tell me what is wrong with the language. Need to merge from word to
excel spreadsheet in order to import into database.


"Tom Ogilvy" wrote:

the code depends on there being a single blank row between each address.

If you have multiple blank rows between each address, then

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng.Areas
Set r = cell(cell.count).Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub

--
Regards,
Tom Ogilvy


"gwbdirect" wrote:

Hi Tom,
Works to a point. When they gave me the list they left spaces between each
address.
TO: Medical Director
Saint Marys Hospital
1216 Second Street SW
Rochester, MN 55902


TO: Medical Director
Mayo Clinic
4500 San Pablo Road
Jacksonville, FL 32224

can I eliminate the space in the code or do I need to do it in word first.
If so how do I take out the space in word.

"Tom Ogilvy" wrote:

Why not just copy and paste it into Excel, then you can parse it out in Excel
- that would simplify your problem.

Make sure row1 is empty
(First address should start in A2)

Sub ParseData()
Dim r As Range, r1 As Range
Dim r2 As Range, rw As Long
Dim cell As Range, c As Range
Dim rng As Range
Dim i As Long, j As Long
Dim s As String, s1 As String
Dim s2 As String, s3 As String
Dim ipos1 As Long, ipos2 As Long
rw = 2
Set rng = Columns(1).SpecialCells(xlBlanks)
For Each cell In rng
Set r = cell.Offset(1, 0)
Set r1 = r.End(xlDown)
Set r2 = Range(r, r1)
j = 0
If r2.Rows.Count 7 Then Exit Sub
For Each c In r2
j = j + 1
Cells(rw, 3 + j) = c.Value
Next
Cells(rw, 3 + 1) = Trim(Replace _
(Cells(rw, 3 + 1), "TO:", ""))
s = Cells(rw, 3 + j)
ipos1 = InStr(1, s, ",", vbTextCompare)
ipos2 = InStrRev(s, " ", -1, vbTextCompare)
s1 = Trim(Left(s, ipos1 - 1))
s2 = Trim(Mid(s, ipos1 + 1, ipos2 - ipos1))
s3 = Mid(s, ipos2 + 1, 255)
Cells(rw, 3 + j) = s1
Cells(rw, 3 + j + 1) = s2
Cells(rw, 3 + j + 2) = s3
rw = rw + 1
Next cell
End Sub


Worked for me with the data you show.

--
regards,
Tom Ogilvy


"gwbdirect" wrote:

How can I take a list example below and import it into excel in column
format? Is this possible?
TO: Medical Director
Mayo Cancer Center-Albert Lea
404 West Fountain Street
Albert Lea, MN 56007

TO: Medical Director
Albert Lea Eye Clinic
1206 West Front Street
Albert Lea, MN 56007

NAME COMPANY CITY STATE ZIP

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
importing Word lists into Excel Sarah Excel Discussion (Misc queries) 0 July 17th 08 12:55 AM
Importing from excel to word Kenike Excel Discussion (Misc queries) 2 November 30th 07 08:10 PM
Importing a Word Document into Excel Depechez New Users to Excel 0 September 8th 06 05:30 PM
Importing diagram from Excel to Word Omkar Excel Worksheet Functions 3 July 7th 06 09:47 PM
Importing Word doc into Excel Solimar Excel Discussion (Misc queries) 3 March 26th 06 08:50 PM


All times are GMT +1. The time now is 10:48 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"