#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 143
Default How to report a bug

I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default How to report a bug

Post a description of you bug here and get some feedback
--
Gary''s Student - gsnu200829


"PJFry" wrote:

I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default How to report a bug

Post it here

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"PJFry" wrote in message
...
I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default How to report a bug

How about posting a description/explanation.

--
Biff
Microsoft Excel MVP


"PJFry" wrote in message
...
I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 143
Default How to report a bug

The formula starts off like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!$2:$2,0)

But when I copy it down the range, the lookup array for the match loses its
fixed reference, like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!2:2,0)

If I go back and re-fix the reference and copy it down, no issues. If make
a change to the formula and copy it down the range, the references are no
longer fixed again.


"Gary''s Student" wrote:

Post a description of you bug here and get some feedback
--
Gary''s Student - gsnu200829


"PJFry" wrote:

I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default How to report a bug

Sadly, I cannot replicate your problem. If I put your formula in a cell and
copy downwards, I get:

=VLOOKUP($A3,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))
=VLOOKUP($A4,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))
=VLOOKUP($A5,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))
=VLOOKUP($A6,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))
=VLOOKUP($A7,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))
=VLOOKUP($A8,pvt90DNet!$A:$AZ,MATCH(pvt90DNet!B$2, pvtCnt90!$2:$2,0))

The $A3 adjusts as it should. $2:$2 retains its integrity.
Same behavior in 2003 & 2007
--
Gary''s Student - gsnu200829


"PJFry" wrote:

The formula starts off like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!$2:$2,0)

But when I copy it down the range, the lookup array for the match loses its
fixed reference, like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!2:2,0)

If I go back and re-fix the reference and copy it down, no issues. If make
a change to the formula and copy it down the range, the references are no
longer fixed again.


"Gary''s Student" wrote:

Post a description of you bug here and get some feedback
--
Gary''s Student - gsnu200829


"PJFry" wrote:

I have found a bug using the Match function in Excel 2007 and I want to see
if it has already been reported. How can I do that?

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default How to report a bug

=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'! B$2,'pvtCnt90'!$2:$2,0)

Your formula as posted is incomplete.

I am unable to reproduce that behavior.

In Excel 2007...

=VLOOKUP($A3,'Sheet 2'!$A:$H,MATCH(B$2,'Sheet 2'!$2:$2,0),0)

I entered that formula in a cell and drag copied down and it worked as
expected. The reference to Sheet2!$2:$2 remained absolute.

I entered the formula in a cell then did CopyPaste in several other cells
and again, it worked as expected.

--
Biff
Microsoft Excel MVP


"PJFry" wrote in message
...
The formula starts off like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!$2:$2,0)

But when I copy it down the range, the lookup array for the match loses
its
fixed reference, like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!2:2,0)

If I go back and re-fix the reference and copy it down, no issues. If
make
a change to the formula and copy it down the range, the references are no
longer fixed again.


"Gary''s Student" wrote:

Post a description of you bug here and get some feedback
--
Gary''s Student - gsnu200829


"PJFry" wrote:

I have found a bug using the Match function in Excel 2007 and I want to
see
if it has already been reported. How can I do that?



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default How to report a bug

I find that in Excel 2003 and Excel 2007
=VLOOKUP($A3,Sheet4!$A:$AZ,MATCH(Sheet4!B$2,Sheet4 !2:$2,0))
becomes
=VLOOKUP($A4,Sheet4!$A:$AZ,MATCH(Sheet4!B$2,Sheet4 !$2:3,0))
Note the $ before the $2:3

But if you start with $2:$2 it stays that way
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"PJFry" wrote in message
...
The formula starts off like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!$2:$2,0)

But when I copy it down the range, the lookup array for the match loses
its
fixed reference, like so:
=VLOOKUP($A3,pvt90DNet'!$A:$AZ,MATCH('pvt90DNet'!B $2,'pvtCnt90'!2:2,0)

If I go back and re-fix the reference and copy it down, no issues. If
make
a change to the formula and copy it down the range, the references are no
longer fixed again.


"Gary''s Student" wrote:

Post a description of you bug here and get some feedback
--
Gary''s Student - gsnu200829


"PJFry" wrote:

I have found a bug using the Match function in Excel 2007 and I want to
see
if it has already been reported. How can I do that?



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
Getting missing data from one report into another report... vlookupabyss Excel Discussion (Misc queries) 3 January 8th 08 03:26 PM
Print Report W/Sub Report Roger Excel Discussion (Misc queries) 0 September 6th 06 10:53 PM
Automate Excel report to place certain data into existing report? Craig Harrison Excel Worksheet Functions 3 July 25th 06 01:54 PM
Header in Report Manager Report Steve K Excel Discussion (Misc queries) 0 March 7th 06 07:32 PM
=(IF(ISTEXT('Data Report'!$L2:$L4),'Data Report'!N3,J11)) Response s2frost Excel Discussion (Misc queries) 2 June 25th 05 06:07 PM


All times are GMT +1. The time now is 06:41 AM.

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"