#1   Report Post  
Posted to microsoft.public.excel.misc
streetboarder
 
Posts: n/a
Default vlookup? indirect?


Need help!

I have two seperate sheets. RawData (Needs to stay in Priority # sort)
and Overview

On the RawData there are approx. 30 columns for current projects.
Listing things like: manager, priority number, status ("AD" : row
contains the following results: "completed", "not started", "active").
Approx. 60 projects but need to plan on 250

I need to match up two of the 30 columns from the overview sheet:
Projects Status "not started" (Column "AD" and Manager (Column "D").

"Overview" file needs to show all projects not started, by manager
including a few extra cells found in the same row (priority numbers -
"A"), and (total hours - "T"). There is a second piece to this puzzle
but I think if I can see this example I can figure the other one out.

One option is to sort the data to another wookbook, delete rows and
copy over but I would like to do this automatically so that it will
always list all projects not started. I can also probably (not sure
yet), write a horrible macro to do all of this as well, so I would be
greatful for anyone's help on this as I am sure there is a much easer
way to do this.

It's late so if no one is understanding this please let me know and I
can get back to you with specifics.

Thanks!


--
streetboarder
------------------------------------------------------------------------
streetboarder's Profile: http://www.excelforum.com/member.php...o&userid=30707
View this thread: http://www.excelforum.com/showthread...hreadid=533348

  #2   Report Post  
Posted to microsoft.public.excel.misc
John James
 
Posts: n/a
Default vlookup? indirect?


Start with the simplest possible solution, based on my reading.

Keep it simple. Keep it all in one file if possible.

Have you considered leaving the data in place and producing your
desired results on the RawData sheet through an autofilter?


Add columns for vlookups in the RawData table:

http://contextures.com/xlFunctions02.html

e.g. In the first row enter formulae and then copy down:
=vlookup(ProjectID,OverviewTable,NoOfColumns,0)
Replace "ProjectID" & "OverviewTable" with references fo the
relevant cell in the RawData table & the Overview table range
respectively.
Replace "NoOfColumns" with a number (representing the desired number
of columns in the overview table to the right of the projectID +1)


In your data area, select Data-Filter-Autofilter
From the drop-down boxes make your selections

Once working, can then look at improvements (error conditions, etc) &
consider alternative formulae if speed is an issue.


--
John James
------------------------------------------------------------------------
John James's Profile: http://www.excelforum.com/member.php...o&userid=32690
View this thread: http://www.excelforum.com/showthread...hreadid=533348

  #3   Report Post  
Posted to microsoft.public.excel.misc
streetboarder
 
Posts: n/a
Default vlookup? indirect?


Thanks John. Looking into the vlookup function.

Only problem is that I need to pull three different sets of different
columns onto the same page so using a "a" column works for one set but
not the other two.

I have a semi-working macro that copies the "rawdata" sheet, sorts it
the way I need, copies the data to the overview sheet, removes the link
(paste special - vaules) and deletes the temp data sort sheet.

It's about 50% complete so far.

How do you know when you need Access or Excel in this situation?

Most of the data is text, a few dates, no formulas "other than simple
count and sum" and a lot of different reporting.

Any ideas on which to use? I don't know Access that well (more than
willing to learn) so I would appreciate anyones comments they have.

Thanks!


--
streetboarder
------------------------------------------------------------------------
streetboarder's Profile: http://www.excelforum.com/member.php...o&userid=30707
View this thread: http://www.excelforum.com/showthread...hreadid=533348

  #4   Report Post  
Posted to microsoft.public.excel.misc
John James
 
Posts: n/a
Default vlookup? indirect?


If you want to pull three different sets of different columns onto the
one page, use three new columns on that page with three different
(albeit similar) vlookup formulae.

streetboarder Wrote:

Only problem is that I need to pull three different sets of different
columns onto the same page so using a "a" column works for one set but
not the other two.


Better to keep it simple. If standard excel functionality produces the
result you're after (as it apparently does based on your description),
then avoid the complexities of macros.

streetboarder Wrote:

I have a semi-working macro that copies the "rawdata" sheet, sorts it
the way I need, copies the data to the overview sheet, removes the link
(paste special - vaules) and deletes the temp data sort sheet.

It's about 50% complete so far.


There seems no need to consider Access for your need. Your database of
60 columns (fields) by 250 rows (projects) is small and is suited to
Excel. Access copes with huge databases better than Excel, largely
because of differences in how memory is used.

Access is generally more robust. For example, in Excel a user can
accidentally delete a formula in a cell. Much harder to make similar,
hard-to-detect mistakes in Access. Building in checks is an important
part of spreadsheet design.

Excel models are generally far quicker to build, and more flexible in
reporting.

I'd suggest a better investment of your time is to understand vlookups,
filters, etc than to learn an entirely new product (Access) which
doesn't seem to have significant advantages for your needs. Using
Vlookups is a core excel skill that you'll use repeatedly once learnt.

streetboarder Wrote:

How do you know when you need Access or Excel in this situation?

Most of the data is text, a few dates, no formulas "other than simple
count and sum" and a lot of different reporting.

Any ideas on which to use? I don't know Access that well (more than
willing to learn) so I would appreciate anyones comments they have.

Thanks!



--
John James
------------------------------------------------------------------------
John James's Profile: http://www.excelforum.com/member.php...o&userid=32690
View this thread: http://www.excelforum.com/showthread...hreadid=533348

  #5   Report Post  
Posted to microsoft.public.excel.misc
streetboarder
 
Posts: n/a
Default vlookup? indirect?


Thanks!

Ok. Iv'e deleted the macro's and not looking at access and trying to do
this through Vlookups and other functions.

I have information from the rawdata sheet going to the following
worksheets.

"Summary. Shows totals and active projects only"

"Overview - not Started projects sorted in three different ways (by
manager, by # and by hours)

Project list by type (all projects totaled by status (active, not
started, etc),

Project list by manager with totals per manager.

All of this data is on my RawData sheet.

My question is can this different information all pull from the RawData
sheet or do I need to include other hidden sheets to do this? Also,
using a Vlookup or other functions how do i find the "project status -
Cell: AD13 match it to a single option and then pull the whole row of
info? This would be my solution if I can use hidden worksheets.

Thanks!


--
streetboarder
------------------------------------------------------------------------
streetboarder's Profile: http://www.excelforum.com/member.php...o&userid=30707
View this thread: http://www.excelforum.com/showthread...hreadid=533348



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
Indirect Vlookup with RC[-1] outwest Excel Worksheet Functions 6 March 12th 06 10:08 PM
how to use 2 worksheets in one formula with INDIRECT & VLOOKUP NEWB Excel Worksheet Functions 1 December 3rd 05 05:48 AM
Confusing VLOOKUP with Indirect reference Brian Excel Worksheet Functions 1 November 11th 05 12:03 AM
Indirect or Vlookup Function Justin Excel Worksheet Functions 1 July 29th 05 10:38 PM
vlookup, &, indirect Joe Blow Excel Worksheet Functions 2 March 3rd 05 10:40 PM


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