Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
http://
 
Posts: n/a
Default Assistance please?

I am new to using and creating function in Excel so please bear with me.

I have created a sheet that will allow a user to input a number (this will
be a load in pounds) divide it by a certain factor and show the result. This
part is complete and working fine (thanks to some of you). Now what I would
like to do is have that result compared to a chart and have the result from
the chart display (I have managed to get this to work somewhat by using
=IF(C36<=5.25,"1 PLY 2x4",IF(C36=10.5,"2 PLY 2x4"))

What I can't figure out is if C36 is less than or equal to 10.49 but greater
than 5.25.
If I end up with a number like 7.25 then I get a "False" response. I have
searched and searched the help files but I am hopelessly lost at this point.

Any help would be greatly appreciated

Thanks,
Joe


  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

You are not providing what you want to occur if the value in C36 is between
5.25 and 10.5. Let us know what you want in the event of "7.25"...
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"http://" wrote in message
...
I am new to using and creating function in Excel so please bear with me.

I have created a sheet that will allow a user to input a number (this will
be a load in pounds) divide it by a certain factor and show the result.

This
part is complete and working fine (thanks to some of you). Now what I

would
like to do is have that result compared to a chart and have the result

from
the chart display (I have managed to get this to work somewhat by using
=IF(C36<=5.25,"1 PLY 2x4",IF(C36=10.5,"2 PLY 2x4"))

What I can't figure out is if C36 is less than or equal to 10.49 but

greater
than 5.25.
If I end up with a number like 7.25 then I get a "False" response. I have
searched and searched the help files but I am hopelessly lost at this

point.

Any help would be greatly appreciated

Thanks,
Joe




  #4   Report Post  
http://
 
Posts: n/a
Default

Sorry for the lack of info there Anne.


"Plies" "2x4"
1 5.25
2 10.5
3 15.75
4 21
5 26.5


If the result is 5.25 or less than I need the result to say 1-2x4
If the result is between 5.26 and 10.5 then I need the result to say 2-2x4
If the result is between 10.6 and 15.75 then I need the result to say 3-2x4
etc.

Again, thank you very much



"Anne Troy" wrote in message
news:95c63$42cbf15f$97c5108d$15647@allthenewsgroup s.com...
You are not providing what you want to occur if the value in C36 is

between
5.25 and 10.5. Let us know what you want in the event of "7.25"...
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"http://" wrote in message
...
I am new to using and creating function in Excel so please bear with me.

I have created a sheet that will allow a user to input a number (this

will
be a load in pounds) divide it by a certain factor and show the result.

This
part is complete and working fine (thanks to some of you). Now what I

would
like to do is have that result compared to a chart and have the result

from
the chart display (I have managed to get this to work somewhat by using
=IF(C36<=5.25,"1 PLY 2x4",IF(C36=10.5,"2 PLY 2x4"))

What I can't figure out is if C36 is less than or equal to 10.49 but

greater
than 5.25.
If I end up with a number like 7.25 then I get a "False" response. I

have
searched and searched the help files but I am hopelessly lost at this

point.

Any help would be greatly appreciated

Thanks,
Joe






  #6   Report Post  
Don Guillett
 
Posts: n/a
Default

Best to use a lookup table. Look in HELP index for LOOKUP or VLOOKUP

--
Don Guillett
SalesAid Software

"http://" wrote in message
...
Sorry for the lack of info there Anne.


"Plies" "2x4"
1 5.25
2 10.5
3 15.75
4 21
5 26.5


If the result is 5.25 or less than I need the result to say 1-2x4
If the result is between 5.26 and 10.5 then I need the result to say 2-2x4
If the result is between 10.6 and 15.75 then I need the result to say

3-2x4
etc.

Again, thank you very much



"Anne Troy" wrote in message
news:95c63$42cbf15f$97c5108d$15647@allthenewsgroup s.com...
You are not providing what you want to occur if the value in C36 is

between
5.25 and 10.5. Let us know what you want in the event of "7.25"...
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"http://" wrote in message
...
I am new to using and creating function in Excel so please bear with

me.

I have created a sheet that will allow a user to input a number (this

will
be a load in pounds) divide it by a certain factor and show the

result.
This
part is complete and working fine (thanks to some of you). Now what I

would
like to do is have that result compared to a chart and have the result

from
the chart display (I have managed to get this to work somewhat by

using
=IF(C36<=5.25,"1 PLY 2x4",IF(C36=10.5,"2 PLY 2x4"))

What I can't figure out is if C36 is less than or equal to 10.49 but

greater
than 5.25.
If I end up with a number like 7.25 then I get a "False" response. I

have
searched and searched the help files but I am hopelessly lost at this

point.

Any help would be greatly appreciated

Thanks,
Joe








  #8   Report Post  
Sandy Mann
 
Posts: n/a
Default

If the incriment is always 5.25 then try:


=MAX(INT(A1/5.25),1)

with the "2x4"' number in A1 and Custom format the cell as:

General "PLY 2x4"

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk


"http://" wrote in message
...
Sorry for the lack of info there Anne.


"Plies" "2x4"
1 5.25
2 10.5
3 15.75
4 21
5 26.5


If the result is 5.25 or less than I need the result to say 1-2x4
If the result is between 5.26 and 10.5 then I need the result to say 2-2x4
If the result is between 10.6 and 15.75 then I need the result to say

3-2x4
etc.

Again, thank you very much



"Anne Troy" wrote in message
news:95c63$42cbf15f$97c5108d$15647@allthenewsgroup s.com...
You are not providing what you want to occur if the value in C36 is

between
5.25 and 10.5. Let us know what you want in the event of "7.25"...
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"http://" wrote in message
...
I am new to using and creating function in Excel so please bear with

me.

I have created a sheet that will allow a user to input a number (this

will
be a load in pounds) divide it by a certain factor and show the

result.
This
part is complete and working fine (thanks to some of you). Now what I

would
like to do is have that result compared to a chart and have the result

from
the chart display (I have managed to get this to work somewhat by

using
=IF(C36<=5.25,"1 PLY 2x4",IF(C36=10.5,"2 PLY 2x4"))

What I can't figure out is if C36 is less than or equal to 10.49 but

greater
than 5.25.
If I end up with a number like 7.25 then I get a "False" response. I

have
searched and searched the help files but I am hopelessly lost at this

point.

Any help would be greatly appreciated

Thanks,
Joe








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
Conditional format assistance Bobby Excel Discussion (Misc queries) 5 April 8th 05 02:07 PM
Formula Assistance DougS Excel Worksheet Functions 1 March 29th 05 11:35 PM
Filtering assistance Ted Metro Excel Worksheet Functions 2 March 16th 05 10:32 PM
Formula assistance required!!! Don Excel Discussion (Misc queries) 4 February 22nd 05 08:34 PM
Turn off Assistance pane in Excel Petra Excel Discussion (Misc queries) 1 December 1st 04 02:19 AM


All times are GMT +1. The time now is 01:23 PM.

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"