PC Review


Reply
Thread Tools Rate Thread

I Need Help! Asap.

 
 
kristyb
Guest
Posts: n/a
 
      10th Aug 2006

I am trying to create a quote sheet.

I have located similar information however it doesn't make sense.
tried to used nested IF statements but the limit of 7 doesn't work ou
very well. Then I tried to explore Macros but I have no idea how thos
work. So I really need some help.

Right now I have three things.

Amount of Users - Cost

Based on the amount of users, it produces a cost associated.

1 = 10
2 = 15
3 = 20
4 = 30
5 = 40
6 = 55
7 = 60
8 = 70

..... 40 = XXX and so on.

Prices are fictional however I need it to pull the amount of users an
produce teh cost associated with it

--
kristy
-----------------------------------------------------------------------
kristyb's Profile: http://www.excelforum.com/member.php...fo&userid=3731
View this thread: http://www.excelforum.com/showthread.php?threadid=57018

 
Reply With Quote
 
 
 
 
Steel Monkey
Guest
Posts: n/a
 
      10th Aug 2006

Hi KristyB
I would suggest using a vlookup. There should be plenty of info on tha
in excels help feature.

See how you go and if your still stuck let me know!

Steel Monke

--
Steel Monke
-----------------------------------------------------------------------
Steel Monkey's Profile: http://www.excelforum.com/member.php...fo&userid=2905
View this thread: http://www.excelforum.com/showthread.php?threadid=57018

 
Reply With Quote
 
=?Utf-8?B?TWFya04=?=
Guest
Posts: n/a
 
      10th Aug 2006
It sounds like you need a VLOOKUP function, have a look at
http://www.contextures.com/xlFunctions02.html
--
Thanks,
MarkN


"kristyb" wrote:

>
> I am trying to create a quote sheet.
>
> I have located similar information however it doesn't make sense. I
> tried to used nested IF statements but the limit of 7 doesn't work out
> very well. Then I tried to explore Macros but I have no idea how those
> work. So I really need some help.
>
> Right now I have three things.
>
> Amount of Users - Cost
>
> Based on the amount of users, it produces a cost associated.
>
> 1 = 10
> 2 = 15
> 3 = 20
> 4 = 30
> 5 = 40
> 6 = 55
> 7 = 60
> 8 = 70
>
> ..... 40 = XXX and so on.
>
> Prices are fictional however I need it to pull the amount of users and
> produce teh cost associated with it.
>
>
> --
> kristyb
> ------------------------------------------------------------------------
> kristyb's Profile: http://www.excelforum.com/member.php...o&userid=37311
> View this thread: http://www.excelforum.com/showthread...hreadid=570185
>
>

 
Reply With Quote
 
CLR
Guest
Posts: n/a
 
      10th Aug 2006
The feature you are looking for is called VLOOKUP.
For practice, put 1 in M1 and 2 in M2 down to 40 in M40......then put
whatever "prices" you wish in the corresponding cells down column
N......then in A1 type a number between 1 and 40, and finally in B1 put this
formula.....it will return the "price" for the number in A1.........

=VLOOKUP(A1,M1:N40,2,FALSE)

you can change the cell numbers to fit your needs
hth
Vaya con Dios,
Chuck, CABGx3


"kristyb" <(E-Mail Removed)> wrote in
message news:(E-Mail Removed)...
>
> I am trying to create a quote sheet.
>
> I have located similar information however it doesn't make sense. I
> tried to used nested IF statements but the limit of 7 doesn't work out
> very well. Then I tried to explore Macros but I have no idea how those
> work. So I really need some help.
>
> Right now I have three things.
>
> Amount of Users - Cost
>
> Based on the amount of users, it produces a cost associated.
>
> 1 = 10
> 2 = 15
> 3 = 20
> 4 = 30
> 5 = 40
> 6 = 55
> 7 = 60
> 8 = 70
>
> .... 40 = XXX and so on.
>
> Prices are fictional however I need it to pull the amount of users and
> produce teh cost associated with it.
>
>
> --
> kristyb
> ------------------------------------------------------------------------
> kristyb's Profile:

http://www.excelforum.com/member.php...o&userid=37311
> View this thread: http://www.excelforum.com/showthread...hreadid=570185
>



 
Reply With Quote
 
Alan
Guest
Posts: n/a
 
      10th Aug 2006
=VLOOKUP(A1,{1,10;2,15;3,20;4,30;5,40;6,55;7,60;8,70},2)
You can extend this as far as needed if you want a solution in just one
cell,
Regards,
Alan
PS This with inspiration from Bob Phillips earlier today!
"kristyb" <(E-Mail Removed)> wrote in
message news:(E-Mail Removed)...
>
> I am trying to create a quote sheet.
>
> I have located similar information however it doesn't make sense. I
> tried to used nested IF statements but the limit of 7 doesn't work out
> very well. Then I tried to explore Macros but I have no idea how those
> work. So I really need some help.
>
> Right now I have three things.
>
> Amount of Users - Cost
>
> Based on the amount of users, it produces a cost associated.
>
> 1 = 10
> 2 = 15
> 3 = 20
> 4 = 30
> 5 = 40
> 6 = 55
> 7 = 60
> 8 = 70
>
> .... 40 = XXX and so on.
>
> Prices are fictional however I need it to pull the amount of users and
> produce teh cost associated with it.
>
>
> --
> kristyb
> ------------------------------------------------------------------------
> kristyb's Profile:
> http://www.excelforum.com/member.php...o&userid=37311
> View this thread: http://www.excelforum.com/showthread...hreadid=570185
>



 
Reply With Quote
 
kristyb
Guest
Posts: n/a
 
      10th Aug 2006

CLR I used your example and it worked.

HOWEVER, I changed it to Hlookup and it works fine.

What if... on row 1 & 3 I have my numbers 1-40
and on row 2 & 4 I have my prices. How can I make it that it picks u
the table array for row 1&3 and row2&4

--
kristy
-----------------------------------------------------------------------
kristyb's Profile: http://www.excelforum.com/member.php...fo&userid=3731
View this thread: http://www.excelforum.com/showthread.php?threadid=57018

 
Reply With Quote
 
=?Utf-8?B?Q0xS?=
Guest
Posts: n/a
 
      10th Aug 2006
=IF(ISNA(HLOOKUP(A1,F1:Y2,2,FALSE)),HLOOKUP(A1,F3:Y4,2,FALSE),HLOOKUP(A1,F1:Y2,2,FALSE))

Vaya con Dios,
Chuck, CABGx3



"kristyb" wrote:

>
> CLR I used your example and it worked.
>
> HOWEVER, I changed it to Hlookup and it works fine.
>
> What if... on row 1 & 3 I have my numbers 1-40
> and on row 2 & 4 I have my prices. How can I make it that it picks up
> the table array for row 1&3 and row2&4?
>
>
> --
> kristyb
> ------------------------------------------------------------------------
> kristyb's Profile: http://www.excelforum.com/member.php...o&userid=37311
> View this thread: http://www.excelforum.com/showthread...hreadid=570185
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RE: Help Urgent Asap Asap Asap =?Utf-8?B?Sm9obiBCYXJuZXR0IE1WUA==?= Windows Vista General Discussion 0 31st Oct 2007 08:44 PM
Re: Help Urgent Asap Asap Asap Andre Da Costa[ActiveWin] Windows Vista General Discussion 0 31st Oct 2007 08:13 PM
Help please - Asap =?Utf-8?B?SmVmZiBleGNoYW5nZSBkdW1teQ==?= Microsoft Windows 2000 0 2nd Dec 2005 04:31 AM
Need Help ASAP!! Roshawn Dawson Microsoft ASP .NET 7 4th Nov 2005 04:45 PM
I need help asap Martin Windows XP New Users 2 23rd Oct 2003 11:39 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:56 PM.