Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Reporting Info to New Sheet

Using Excel 2003, I am trying to create a sheet (?Reporting?) to compile the project information kept on another sheet (?2009?) in the same workbook. Essentially, once I can get this one thing figured out, I can probably figure out the rest of it. I want to figure out which columns in the ?2009? sheet have a certain Agenda Item and Project Number that match the Project Number on the ?Reporting? sheet and bring back the date that the item was approved from the ?2009? sheet. I tried it with an example that I know should come up with a date, however I?m not getting any results.

Here are the attempts I?ve made so far. I'm just trying to come up with a report, of sorts.

2009 Sheet:
Column A: ?Date? Column D: ?Agenda Item? Column H: ?Project No.?

Reporting Sheet:
Column A: ?Project No.?

=IF(AND('2009'!D2:D1456="Advertise for Bids",'2009'!H2:H1456=A111),'2009'!A2:A1456,"None" ) RETURN: ?NONE?

=IF(AND('2009'!D2:D1456="Advertise for Bids?,'2009'!H2:H1456=Reporting!A111),'2009'!A2:A1 456," None ") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids ",IF('2009'!H2:H1456=Reporting!A111,'2009'!A2:A145 6,"None")) RETURN: ?FALSE?

=IF(AND(--('2009'!D2:D1456="Advertise for Bids"),--('2009'!H2:H1456=Reporting!A118)),'2009'!A2:A1456, "None") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids?, IF('2009'!H2:H1456=A111,'2009'!A2:A1456,"None")) RETURN: ?FALSE?


I ended up trying a ?Sumproduct?, and they were all returning a false code.
=SUMPRODUCT(--('2009'!D2:D1246)="Advertise for Bids"),--('2009'!H2:H1246)=('2009'!A111)),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246)=A111),--('2009'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)
=SUMPRODUCT('2009'!h2:h1246='Reporting'!A111),('20 09'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)

Thanks all!
Jennifer Corle
City of South Bend
Department of Engineering & Board of Public Works


EggHeadCafe - Software Developer Portal of Choice
ASP.NET Application State and Application Object
http://www.eggheadcafe.com/tutorials...ion-state.aspx
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
Default Reporting Info to New Sheet

Hi Jennifer,
try
=SUMPRODUCT(--('2009'!D2:D1246="Advertise for
Bids"),--('2009'!H2:H1246='2009'!A111),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246=A111),--('2009'!D2:D1246="Advertise for
Bids"),'2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246='Reporting'!A111),('2009'!D2:D124 6="Advertise
for Bids"),'2009'!A2:A1246)



"Jennifer Corle" wrote:

Using Excel 2003, I am trying to create a sheet (?Reporting?) to compile the project information kept on another sheet (?2009?) in the same workbook. Essentially, once I can get this one thing figured out, I can probably figure out the rest of it. I want to figure out which columns in the ?2009? sheet have a certain Agenda Item and Project Number that match the Project Number on the ?Reporting? sheet and bring back the date that the item was approved from the ?2009? sheet. I tried it with an example that I know should come up with a date, however I?m not getting any results.

Here are the attempts I?ve made so far. I'm just trying to come up with a report, of sorts.

2009 Sheet:
Column A: ?Date? Column D: ?Agenda Item? Column H: ?Project No.?

Reporting Sheet:
Column A: ?Project No.?

=IF(AND('2009'!D2:D1456="Advertise for Bids",'2009'!H2:H1456=A111),'2009'!A2:A1456,"None" ) RETURN: ?NONE?

=IF(AND('2009'!D2:D1456="Advertise for Bids?,'2009'!H2:H1456=Reporting!A111),'2009'!A2:A1 456," None ") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids ",IF('2009'!H2:H1456=Reporting!A111,'2009'!A2:A145 6,"None")) RETURN: ?FALSE?

=IF(AND(--('2009'!D2:D1456="Advertise for Bids"),--('2009'!H2:H1456=Reporting!A118)),'2009'!A2:A1456, "None") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids?, IF('2009'!H2:H1456=A111,'2009'!A2:A1456,"None")) RETURN: ?FALSE?


I ended up trying a ?Sumproduct?, and they were all returning a false code.
=SUMPRODUCT(--('2009'!D2:D1246)="Advertise for Bids"),--('2009'!H2:H1246)=('2009'!A111)),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246)=A111),--('2009'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)
=SUMPRODUCT('2009'!h2:h1246='Reporting'!A111),('20 09'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)

Thanks all!
Jennifer Corle
City of South Bend
Department of Engineering & Board of Public Works


EggHeadCafe - Software Developer Portal of Choice
ASP.NET Application State and Application Object
http://www.eggheadcafe.com/tutorials...ion-state.aspx
.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Figured it out

Thanks anyway



Jennifer Corle wrote:

Reporting Info to New Sheet
28-Oct-09

Using Excel 2003, I am trying to create a sheet (?Reporting?) to compile the project information kept on another sheet (?2009?) in the same workbook. Essentially, once I can get this one thing figured out, I can probably figure out the rest of it. I want to figure out which columns in the ?2009? sheet have a certain Agenda Item and Project Number that match the Project Number on the ?Reporting? sheet and bring back the date that the item was approved from the ?2009? sheet. I tried it with an example that I know should come up with a date, however I?m not getting any results.

Here are the attempts I?ve made so far. I'm just trying to come up with a report, of sorts.

2009 Sheet:
Column A: ?Date? Column D: ?Agenda Item? Column H: ?Project No.?

Reporting Sheet:
Column A: ?Project No.?

=IF(AND('2009'!D2:D1456="Advertise for Bids",'2009'!H2:H1456=A111),'2009'!A2:A1456,"None" ) RETURN: ?NONE?

=IF(AND('2009'!D2:D1456="Advertise for Bids?,'2009'!H2:H1456=Reporting!A111),'2009'!A2:A1 456," None ") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids ",IF('2009'!H2:H1456=Reporting!A111,'2009'!A2:A145 6,"None")) RETURN: ?FALSE?

=IF(AND(--('2009'!D2:D1456="Advertise for Bids"),--('2009'!H2:H1456=Reporting!A118)),'2009'!A2:A1456, "None") RETURN: ?NONE?

=IF('2009'!D2:D1456="Advertise for Bids?, IF('2009'!H2:H1456=A111,'2009'!A2:A1456,"None")) RETURN: ?FALSE?


I ended up trying a ?Sumproduct?, and they were all returning a false code.
=SUMPRODUCT(--('2009'!D2:D1246)="Advertise for Bids"),--('2009'!H2:H1246)=('2009'!A111)),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246)=A111),--('2009'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)
=SUMPRODUCT('2009'!h2:h1246='Reporting'!A111),('20 09'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)

Thanks all!
Jennifer Corle
City of South Bend
Department of Engineering & Board of Public Works

Previous Posts In This Thread:

EggHeadCafe - Software Developer Portal of Choice
Silverlight 2: Doing Data Part VII: Custom Binary Serialization
http://www.eggheadcafe.com/tutorials...oing-data.aspx
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Reporting Info to New Sheet

On Oct 28, 11:28*am, Eduardo
wrote:
Hi Jennifer,
try
=SUMPRODUCT(--('2009'!D2:D1246="Advertise for
Bids"),--('2009'!H2:H1246='2009'!A111),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246=A111),--('2009'!D2:D1246="Advertise for
Bids"),'2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246='Reporting'!A111),('2009'!D2:D124 6="Advertise
for Bids"),'2009'!A2:A1246)

"Jennifer Corle" wrote:
Using Excel 2003, I am trying to create a sheet (?Reporting?) to compile the project information kept on another sheet (?2009?) in the same workbook. *Essentially, once I can get this one thing figured out, I can probably figure out the rest of it. I want to figure out which columns in the ?2009? sheet have a certain Agenda Item and Project Number that match the Project Number on the ?Reporting? sheet and bring back the date that the item was approved from the ?2009? sheet. I tried it with an example that I know should come up with a date, however I?m not getting any results.


Here are the attempts I?ve made so far. I'm just trying to come up with a report, of sorts.


2009 Sheet:
Column A: ?Date? * Column D: ?Agenda Item? Column H: ?Project No.?


Reporting Sheet:
Column A: ?Project No.? * *


=IF(AND('2009'!D2:D1456="Advertise for Bids",'2009'!H2:H1456=A111),'2009'!A2:A1456,"None" ) * * RETURN: ?NONE?


=IF(AND('2009'!D2:D1456="Advertise for Bids?,'2009'!H2:H1456=Reporting!A111),'2009'!A2:A1 456," None ") * * *RETURN: ?NONE?


=IF('2009'!D2:D1456="Advertise for Bids ",IF('2009'!H2:H1456=Reporting!A111,'2009'!A2:A145 6,"None")) * RETURN: ?FALSE?


=IF(AND(--('2009'!D2:D1456="Advertise for Bids"),--('2009'!H2:H1456=Reporting!A118)),'2009'!A2:A1456, "None") * RETURN: ?NONE?


=IF('2009'!D2:D1456="Advertise for Bids?, IF('2009'!H2:H1456=A111,'2009'!A2:A1456,"None")) *RETURN: ?FALSE?


I ended up trying a ?Sumproduct?, and they were all returning a false code.
=SUMPRODUCT(--('2009'!D2:D1246)="Advertise for Bids"),--('2009'!H2:H1246)=('2009'!A111)),('2009'!A2:A1246)
=SUMPRODUCT(--('2009'!h2:h1246)=A111),--('2009'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)
=SUMPRODUCT('2009'!h2:h1246='Reporting'!A111),('20 09'!D2:D1246="Advertise for Bids"),'2009'!A2:A1246)


Thanks all!
Jennifer Corle
City of South Bend
Department of Engineering & Board of Public Works


EggHeadCafe - Software Developer Portal of Choice
ASP.NET Application State and Application Object
http://www.eggheadcafe.com/tutorials...3c-4097-aaf8-3...
.




That's pretty much what I ended up doing, thanks! Once I got it all
together, they didn't want the information in the way I presented it.
LOL!

Jennifer
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
reporting value from other sheet Shane Devenshire[_2_] Excel Worksheet Functions 0 July 10th 09 07:56 PM
pivot reporting wrong info-riv Rivers Excel Discussion (Misc queries) 1 September 19th 08 05:28 PM
Annual Wages Sheet to pick up info from Time Sheet stallence Excel Worksheet Functions 2 May 5th 08 11:02 PM
Finding Info from sheet 1 and removing only those rows from sheet Johnny B[_2_] Excel Discussion (Misc queries) 1 March 28th 07 02:29 PM
How do I compare info in on sheet to info in another? Fanney Excel Discussion (Misc queries) 7 February 25th 06 02:16 AM


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