Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

I have a nother vlookup problem where I'm hoping to be able to return a value
if the lookup value BEGINS with a certain number which can be found in a
particular cell... I'm not sure it's going to be possible to say...

If the lookup values in the named range begin with the value found in cell
x2, then return the value from the third column in the namged range.

thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

Hi,
What about somthing like:

If A2 starts with X2 then VLOOKUP(...) else A2
= IF( LEFT(A2,LEN(X2)) = LEFT(X2,LEN(X2)) , VLOOKUP(...) , A2 )

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

I have a nother vlookup problem where I'm hoping to be able to return a value
if the lookup value BEGINS with a certain number which can be found in a
particular cell... I'm not sure it's going to be possible to say...

If the lookup values in the named range begin with the value found in cell
x2, then return the value from the third column in the namged range.

thanks in advance.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

Thanks for the reply but nope that didn't do it. I don't think I'm
explaining myself properly...

My first sheet (sheet1) has a value in cell x32. I want to look for cells
that begin with that value in my second sheet (sheet2) in column D. Once a
value is found in column d of my second sheet i want that found value to be
copied to sheet1 cell x33.

Then keep looking for values (in sheet2 column D) that begin with the value
in sheet1 cell x32 and copy the matching results downward in cells x34, x35
etc... I guess it's sort of like and if then with a next thrown in there for
good measure.

Hope this helps make things clearer.

Thanks!

"sebastienm" wrote:

Hi,
What about somthing like:

If A2 starts with X2 then VLOOKUP(...) else A2
= IF( LEFT(A2,LEN(X2)) = LEFT(X2,LEN(X2)) , VLOOKUP(...) , A2 )

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

I have a nother vlookup problem where I'm hoping to be able to return a value
if the lookup value BEGINS with a certain number which can be found in a
particular cell... I'm not sure it's going to be possible to say...

If the lookup values in the named range begin with the value found in cell
x2, then return the value from the third column in the namged range.

thanks in advance.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

ok, i get it now.

Finding a single match
-------------------------
A nice feature of the VLOOKUP function is that it takes wildcard characters.
That is, in cell x33, you can write:

=VLOOKUP( x32 & "*" , sheet2!D:D, 1, False)

Notes:
- x32 & "*" means: search for values starting with value in x32 (wildcard
* = any character)
- sheet2!D:D is fixed so only the first match will be found
- if no match then #N/A is returned

Finding All Matches
---------------------

You could probably use an array formula to detrmine all matches but maybe a
better way would be to use a macro instead of a function:

Sub CopyMatches()
dim rg as range

'''' find matching cells using wildcard
set rg = FindAllBegin sheet1.range("x32").value & "*" , sheet2.range("d:D")

''' copy matching cells over
if not rg is nothing then
rg.copy sheet1.Range("x33")
end if

End sub

Function FindAll (What as Variant, Where as Range) as range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FIndAll = rgResult
end function
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

Thanks for the reply but nope that didn't do it. I don't think I'm
explaining myself properly...

My first sheet (sheet1) has a value in cell x32. I want to look for cells
that begin with that value in my second sheet (sheet2) in column D. Once a
value is found in column d of my second sheet i want that found value to be
copied to sheet1 cell x33.

Then keep looking for values (in sheet2 column D) that begin with the value
in sheet1 cell x32 and copy the matching results downward in cells x34, x35
etc... I guess it's sort of like and if then with a next thrown in there for
good measure.

Hope this helps make things clearer.

Thanks!

"sebastienm" wrote:

Hi,
What about somthing like:

If A2 starts with X2 then VLOOKUP(...) else A2
= IF( LEFT(A2,LEN(X2)) = LEFT(X2,LEN(X2)) , VLOOKUP(...) , A2 )

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

I have a nother vlookup problem where I'm hoping to be able to return a value
if the lookup value BEGINS with a certain number which can be found in a
particular cell... I'm not sure it's going to be possible to say...

If the lookup values in the named range begin with the value found in cell
x2, then return the value from the third column in the namged range.

thanks in advance.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

I see where this is going but I'm getting an error when I'm getting a syntax
error when I tweek it for my specifics... Your ogirnal code has the sub
reference the function of FindAllBegin where the Function is named FindAll,
which is why I changed that thinking that was the problem but it did not fix
it. Here is my modification...

Sub CopyMatches()
Dim rg As Range

'''' find matching cells using wildcard
Set rg = FindAll January.Range("X31").Value & "*",
weights.xls!CustomerAccounts.Range("D:D")

''' copy matching cells over
If Not rg Is Nothing Then
rg.Copy January.Range("X33")
End If

End Sub

Function FindAll(What As Variant, Where As Range) As Range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FindAll = rgResult
End Function


"sebastienm" wrote:

ok, i get it now.

Finding a single match
-------------------------
A nice feature of the VLOOKUP function is that it takes wildcard characters.
That is, in cell x33, you can write:

=VLOOKUP( x32 & "*" , sheet2!D:D, 1, False)

Notes:
- x32 & "*" means: search for values starting with value in x32 (wildcard
* = any character)
- sheet2!D:D is fixed so only the first match will be found
- if no match then #N/A is returned

Finding All Matches
---------------------

You could probably use an array formula to detrmine all matches but maybe a
better way would be to use a macro instead of a function:

Sub CopyMatches()
dim rg as range

'''' find matching cells using wildcard
set rg = FindAllBegin sheet1.range("x32").value & "*" , sheet2.range("d:D")

''' copy matching cells over
if not rg is nothing then
rg.copy sheet1.Range("x33")
end if

End sub

Function FindAll (What as Variant, Where as Range) as range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FIndAll = rgResult
end function
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

Thanks for the reply but nope that didn't do it. I don't think I'm
explaining myself properly...

My first sheet (sheet1) has a value in cell x32. I want to look for cells
that begin with that value in my second sheet (sheet2) in column D. Once a
value is found in column d of my second sheet i want that found value to be
copied to sheet1 cell x33.

Then keep looking for values (in sheet2 column D) that begin with the value
in sheet1 cell x32 and copy the matching results downward in cells x34, x35
etc... I guess it's sort of like and if then with a next thrown in there for
good measure.

Hope this helps make things clearer.

Thanks!

"sebastienm" wrote:

Hi,
What about somthing like:

If A2 starts with X2 then VLOOKUP(...) else A2
= IF( LEFT(A2,LEN(X2)) = LEFT(X2,LEN(X2)) , VLOOKUP(...) , A2 )

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

I have a nother vlookup problem where I'm hoping to be able to return a value
if the lookup value BEGINS with a certain number which can be found in a
particular cell... I'm not sure it's going to be possible to say...

If the lookup values in the named range begin with the value found in cell
x2, then return the value from the third column in the namged range.

thanks in advance.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

gives me a runtime error '9' - Subscript out of range? - ?(rg=nothing)?

Set rg = FindAll(ThisWorkbook.Worksheets("January").Range(" $X$31").Value &
"*", Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300"))


"sebastienm" wrote:

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

ok, there is something that vba doesn't find.
Try debug.print on the following expressions
? ThisWorkbook.Worksheets("January").name
? ThisWorkbook.Worksheets("January").Range("$X$31"). Value
? Workbooks("weights.xls").name
? Workbooks("weights.xls").Worksheets("CustomerAccou nts").name
Anything inconsistent?
Also try running step-by-step (key F8) to see if the error is in the calling
line or within the function.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

gives me a runtime error '9' - Subscript out of range? - ?(rg=nothing)?

Set rg = FindAll(ThisWorkbook.Worksheets("January").Range(" $X$31").Value &
"*", Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300"))


"sebastienm" wrote:

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

Debug.Print ThisWorkbook.Worksheets("January").Name; ""
Debug.Print ThisWorkbook.Worksheets("January").Range("$X$31"). Value
Debug.Print Workbooks("weights.xls").Name
Debug.Print Workbooks("weights.xls").Worksheets("CustomerAccou nts").Name

All returns the expected BUT when I add...

Debug.Print
Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300").Value

I get a type mismatch error type 13. - significant?

"sebastienm" wrote:

ok, there is something that vba doesn't find.
Try debug.print on the following expressions
? ThisWorkbook.Worksheets("January").name
? ThisWorkbook.Worksheets("January").Range("$X$31"). Value
? Workbooks("weights.xls").name
? Workbooks("weights.xls").Worksheets("CustomerAccou nts").name
Anything inconsistent?
Also try running step-by-step (key F8) to see if the error is in the calling
line or within the function.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

gives me a runtime error '9' - Subscript out of range? - ?(rg=nothing)?

Set rg = FindAll(ThisWorkbook.Worksheets("January").Range(" $X$31").Value &
"*", Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300"))


"sebastienm" wrote:

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

error type 13 - yes, that's normal, 'cause it's an array so debug.print
cannot write it.
....
Have you tried running step-by-step (key F8)... (or putting a breakpoint at
the beginning of the FindAll function) to see if it even goes there, because
depending on the vba editor setting, the error could come from deeper but
shows/errorsOut in the calling procedure.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

Debug.Print ThisWorkbook.Worksheets("January").Name; ""
Debug.Print ThisWorkbook.Worksheets("January").Range("$X$31"). Value
Debug.Print Workbooks("weights.xls").Name
Debug.Print Workbooks("weights.xls").Worksheets("CustomerAccou nts").Name

All returns the expected BUT when I add...

Debug.Print
Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300").Value

I get a type mismatch error type 13. - significant?

"sebastienm" wrote:

ok, there is something that vba doesn't find.
Try debug.print on the following expressions
? ThisWorkbook.Worksheets("January").name
? ThisWorkbook.Worksheets("January").Range("$X$31"). Value
? Workbooks("weights.xls").name
? Workbooks("weights.xls").Worksheets("CustomerAccou nts").name
Anything inconsistent?
Also try running step-by-step (key F8) to see if the error is in the calling
line or within the function.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

gives me a runtime error '9' - Subscript out of range? - ?(rg=nothing)?

Set rg = FindAll(ThisWorkbook.Worksheets("January").Range(" $X$31").Value &
"*", Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300"))


"sebastienm" wrote:

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com





  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

I tried the F8 and it din't give me any firther clue and when I breakpoint at
the beginning of the function it doens't look like it's getting to it. I
think the problem is in the calling line. From what I'm reading on the typ
mismatch error I'm thinking it chokes on the range "D:D".

"sebastienm" wrote:

error type 13 - yes, that's normal, 'cause it's an array so debug.print
cannot write it.
...
Have you tried running step-by-step (key F8)... (or putting a breakpoint at
the beginning of the FindAll function) to see if it even goes there, because
depending on the vba editor setting, the error could come from deeper but
shows/errorsOut in the calling procedure.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

Debug.Print ThisWorkbook.Worksheets("January").Name; ""
Debug.Print ThisWorkbook.Worksheets("January").Range("$X$31"). Value
Debug.Print Workbooks("weights.xls").Name
Debug.Print Workbooks("weights.xls").Worksheets("CustomerAccou nts").Name

All returns the expected BUT when I add...

Debug.Print
Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300").Value

I get a type mismatch error type 13. - significant?

"sebastienm" wrote:

ok, there is something that vba doesn't find.
Try debug.print on the following expressions
? ThisWorkbook.Worksheets("January").name
? ThisWorkbook.Worksheets("January").Range("$X$31"). Value
? Workbooks("weights.xls").name
? Workbooks("weights.xls").Worksheets("CustomerAccou nts").name
Anything inconsistent?
Also try running step-by-step (key F8) to see if the error is in the calling
line or within the function.

--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

gives me a runtime error '9' - Subscript out of range? - ?(rg=nothing)?

Set rg = FindAll(ThisWorkbook.Worksheets("January").Range(" $X$31").Value &
"*", Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D2:D300"))


"sebastienm" wrote:

change
Set rg = FindAll( January.Range("X31").Value & "*", weights.xls!
CustomerAccounts.Range ("D:D")
with
''' ----------------------------------------
Set rg = FindAll( _
ThisWorkbook.Worksheets("January").Range("X31").Va lue & "*" _
, Workbooks("weights.xls").Worksheets("CustomerAccou nts").Range("D:D") _
)
''' ----------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com



  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

.... must be something simple that we are missing...

First,
----------
the code works on my side, i just checked.

Second,
----------
what if you replace
...Range("x31").value
by
...Range("x31").text

Third ,
--------
in a new blank book, try my code (even with no data, just to see whether or
not it breaks:
''' ------------------------------
Sub CopyMatches()
Dim rg As Range

'''' find matching cells using wildcard
Set rg = FindAll( _
Sheet1.Range("x32").Value & "*" _
, Sheet2.Range("d:D"))

''' copy matching cells over
If Not rg Is Nothing Then
rg.Copy Sheet1.Range("x33")
End If

End Sub

Function FindAll(What As Variant, Where As Range) As Range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FindAll = rgResult
End Function
''' -------------------------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com

  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 83
Default Vlookup where value begins with

Got it. I followed your suggestions and ran your original code in a new
workbook. As it turns out the error was in reference to the external
workbook where my sheet2 was residing. By moving that sheet into my first
workbook and keeping it hidden I can run your code (works great thank you!)
and keep my other functions and code intact.

Thanks again for all your help, you've been a patient scholar.

"sebastienm" wrote:

... must be something simple that we are missing...

First,
----------
the code works on my side, i just checked.

Second,
----------
what if you replace
...Range("x31").value
by
...Range("x31").text

Third ,
--------
in a new blank book, try my code (even with no data, just to see whether or
not it breaks:
''' ------------------------------
Sub CopyMatches()
Dim rg As Range

'''' find matching cells using wildcard
Set rg = FindAll( _
Sheet1.Range("x32").Value & "*" _
, Sheet2.Range("d:D"))

''' copy matching cells over
If Not rg Is Nothing Then
rg.Copy Sheet1.Range("x33")
End If

End Sub

Function FindAll(What As Variant, Where As Range) As Range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FindAll = rgResult
End Function
''' -------------------------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com

  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default Vlookup where value begins with

No problem Stephen. Glad I could help.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Stephen" wrote:

Got it. I followed your suggestions and ran your original code in a new
workbook. As it turns out the error was in reference to the external
workbook where my sheet2 was residing. By moving that sheet into my first
workbook and keeping it hidden I can run your code (works great thank you!)
and keep my other functions and code intact.

Thanks again for all your help, you've been a patient scholar.

"sebastienm" wrote:

... must be something simple that we are missing...

First,
----------
the code works on my side, i just checked.

Second,
----------
what if you replace
...Range("x31").value
by
...Range("x31").text

Third ,
--------
in a new blank book, try my code (even with no data, just to see whether or
not it breaks:
''' ------------------------------
Sub CopyMatches()
Dim rg As Range

'''' find matching cells using wildcard
Set rg = FindAll( _
Sheet1.Range("x32").Value & "*" _
, Sheet2.Range("d:D"))

''' copy matching cells over
If Not rg Is Nothing Then
rg.Copy Sheet1.Range("x33")
End If

End Sub

Function FindAll(What As Variant, Where As Range) As Range

Dim cell As Range, rgResult As Range
Dim firstAddress As String

With Where
Set cell = .Find(What, LookIn:=xlValues, lookat:=xlWhole)

If Not cell Is Nothing Then
firstAddress = cell.Address
Do
If rgResult Is Nothing Then
Set rgResult = cell
Else
Set rgResult = Application.Union(rgResult, cell)
End If
Set cell = .FindNext(cell)
Loop While Not cell Is Nothing And cell.Address < firstAddress
End If
End With

Set FindAll = rgResult
End Function
''' -------------------------------------------------------

--
Regards,
Sébastien
<http://www.ondemandanalysis.com

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
Sumif and begins with nich Excel Discussion (Misc queries) 6 July 22nd 09 12:11 PM
Begins with Chris Lewis[_2_] Excel Programming 0 January 10th 07 02:32 PM
Begins with [email protected] Excel Programming 1 January 10th 07 01:54 PM
Begins with Don Guillett Excel Programming 0 January 10th 07 01:52 PM
IF Function - Begins With Cecil Excel Discussion (Misc queries) 3 November 23rd 05 03:57 PM


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