Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 553
Default Finding Array Formulas in VBA

How do you search a cell for array formulas? Using the "{" as a search term
in Excel's Find does not seem to do it. Is ther a way in VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 595
Default Finding Array Formulas in VBA

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 553
Default Finding Array Formulas in VBA

What do yo mean by part of an array of formulas? Can you give me an example
of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,120
Default Finding Array Formulas in VBA

An array formula that is applied to more than one cell.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in message
...
What do yo mean by part of an array of formulas? Can you give me an

example
of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 553
Default Finding Array Formulas in VBA

I can't figure out what that means!!


"Bob Phillips" wrote:

An array formula that is applied to more than one cell.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in message
...
What do yo mean by part of an array of formulas? Can you give me an

example
of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,120
Default Finding Array Formulas in VBA

It means that instead of the formula being applied to just one cell, it is
applied to many.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in message
...
I can't figure out what that means!!


"Bob Phillips" wrote:

An array formula that is applied to more than one cell.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in message
...
What do yo mean by part of an array of formulas? Can you give me an

example
of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array

of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way

in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks








  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,119
Default Finding Array Formulas in VBA

An array is a group of similar items. So in this case E6:E12 is an array and
so is F6:F12. It is not a single value, but rather a group of similar
values. That is what is being detected by the isarray formula.
--
HTH...

Jim Thomlinson


"ExcelMonkey" wrote:

I can't figure out what that means!!


"Bob Phillips" wrote:

An array formula that is applied to more than one cell.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in message
...
What do yo mean by part of an array of formulas? Can you give me an

example
of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array of
formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a way in
VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks






  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 595
Default Finding Array Formulas in VBA

EM

In A1:A10, put 1,2,3... 10

Select B1:B10 and type =A1*2 then Control+Shift+Enter. The formula will be
in each cell B1:B10. Now try to delete B5. Honestly, I never use this type
of array formula.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com

ExcelMonkey wrote:
I can't figure out what that means!!


"Bob Phillips" wrote:

An array formula that is applied to more than one cell.

--
HTH

Bob Phillips

"ExcelMonkey" wrote in
message ...
What do yo mean by part of an array of formulas? Can you give me
an example of this?

Thanks

"Dick Kusleika" wrote:

EM

Range("A1").HasArray

will return True if it has an array formula or is part of an array
of formulas.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com


ExcelMonkey wrote:
How do you search a cell for array formulas? Using the "{" as a
search term in Excel's Find does not seem to do it. Is ther a
way in VBA to find these?

{=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))}

Thanks



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
Finding a value or the one next to it in a range NOT array advanced novice Excel Worksheet Functions 3 August 6th 08 02:54 PM
Help in finding Value in Index Array George Excel Discussion (Misc queries) 20 October 29th 07 11:48 PM
Finding the least frequent value in an array Dave D[_2_] Excel Discussion (Misc queries) 3 May 5th 07 12:56 PM
Finding Data in an Array Hannah Excel Worksheet Functions 5 April 17th 07 05:10 AM
Finding closest value within an array Stewart[_3_] Excel Programming 4 September 7th 04 10:09 AM


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