IF Function Queston

al97233

Board Regular
Joined
Nov 13, 2006
Messages
71
I currently have the following formula:
=IF($X$41<10,$X$43*AG70*$V$62,IF($X$41>9,$X$43*AG70*$V$63))

I would like to add a formula that if $X$43 is less than 1 use $CG$43 (this cell contains a sum of other cells). If $X$43 is greater than 1 than use the formula as it is.

Any ideas how i can achieve this?
 
=IF($X$41<10,$X$42*AG66*$V$58,IF(AND($X$41>9,$X$42>1),$X$42*AG66*$V$59,$CG$42*AG66*$V$59))

If the number in $X$41 is less than 10 than multiply $X$42*AG66*$V$58
If the number in $X$41 is 10 or greater than multiply $X$42*AG66*$V$59
If the number in $X$41 is less than 10 and $X$42 has no number than multiply $CG$42*AG66*$V$58
If the number in $X$41 is 10 or greater and $X$42 has no number than multiply $CG$42*AG66*$V$59

I hope this makes sense. You people are far more knowledgeable than I am and the more I think about it the more my head hurts.
 
Upvote 0

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
The formula I posted in #15 does just that, except the AG66 (which was not mentioned in your post#14 description)..
And also the variance of X41 = 10 exactly.
And I left out all the $

Try

=IF($X$41>=10,$V$59,$V$58)*IF(ISNUMBER($X$42),$X$42,$CG$42)*AG66
 
Upvote 0

Forum statistics

Threads
1,224,579
Messages
6,179,656
Members
452,934
Latest member
mm1t1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top