akcramblet
New Member
- Joined
- Jul 12, 2010
- Messages
- 10
I'm pretty good with excel, but this is tricky...
I have a table of bid results for multiple projects my company has bid.
Outside of the table, I need to look at a given company's performance, like the total backlog (or rank 1 bids):
{=SUM(([Company]=F2)*([Rank]=1)*([Bid]))} = $691,469
Not too bad.
I'd also like to see the total "tabled" bid dollars for a given company. Tabled dollars is the difference between the first and second ranked bidders on a single project. So for a given company, I need to add up the total rank 1 bids, and subtract that number from the corresponding rank 2 bids. This is what I've tried, but it doesn't seem to work (The problem is in the second half, which is really all I need):
{=SUM(([Company]=F2)*([Rank]=1)*([Bid]))-SUM((([Project]=IF([Company] =F2,IF([Rank]=1,[Project])))*([Rank]=2)*([Bid Amount])))}
I've never encountered this type of puzzle before, but can't afford the time to figure it out.
Any help is appreciated. Thanks.
Excel 2007Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
I have a table of bid results for multiple projects my company has bid.
Outside of the table, I need to look at a given company's performance, like the total backlog (or rank 1 bids):
{=SUM(([Company]=F2)*([Rank]=1)*([Bid]))} = $691,469
Not too bad.
I'd also like to see the total "tabled" bid dollars for a given company. Tabled dollars is the difference between the first and second ranked bidders on a single project. So for a given company, I need to add up the total rank 1 bids, and subtract that number from the corresponding rank 2 bids. This is what I've tried, but it doesn't seem to work (The problem is in the second half, which is really all I need):
{=SUM(([Company]=F2)*([Rank]=1)*([Bid]))-SUM((([Project]=IF([Company] =F2,IF([Rank]=1,[Project])))*([Rank]=2)*([Bid Amount])))}
I've never encountered this type of puzzle before, but can't afford the time to figure it out.
Any help is appreciated. Thanks.
Excel Workbook | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | Project | Company | Bid | Rank | Company | Backlog | Tabled $ | |||
2 | AAA | Bill | $1,583,777 | 1 | Silas | $691,469 | ???? | |||
3 | AAA | Bob | $1,644,807 | 2 | ||||||
4 | AAA | John | $1,645,761 | 3 | ???? = | |||||
5 | AAA | Silas | $1,704,000 | 4 | $57,872 | |||||
6 | BBB | Silas | $210,000 | 1 | ||||||
7 | BBB | Bob | $215,000 | 2 | ||||||
8 | BBB | John | $223,500 | 3 | ||||||
9 | CCC | Silas | $481,469 | 1 | ||||||
10 | CCC | Bill | $534,341 | 2 | ||||||
11 | EEE | John | $1,365,449 | 1 | ||||||
12 | EEE | Bill | $1,367,757 | 2 | ||||||
13 | EEE | Silas | $1,393,100 | 3 | ||||||
Sheet1 |
#VALUE!
Last edited: