How to combine two formulas in excel

WWW8084

New Member
Joined
May 23, 2017
Messages
3
Can anyone assist me to combining the following two formulas in one cell?

Formula#1


=IF(X3<=0.999,"MC 0 - 1",IF(X3<=2.999,"MC 1 - 3", IF(X3<=8.999,"MC 3 - 9",IF(X3<=23.999,"MC 9 - 24",IF(X3<=49.999,"MC 24 - 50",IF(X3>=50,"MC Above 50" ))))))

Formula#2

=IF(MONTH(F3)=4,"NEW RECEIPT",IF(SUM(J3:R3)=0,"9month no dispatch","6month no dispatch"))

Combined Formula:

please paste here.

Regards.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi. What do you mean by combine? I notice there is no false argument for if X3>=50. Is that where you want the 2nd formula adding?
 
Upvote 0
the second formula should take place after IF(X3>=50,"MC Above 50" starting point of second formula
 
Upvote 0
See if this is it?

=IF(X3<=0.999,"MC 0 - 1",IF(X3<=2.999,"MC 1 - 3", IF(X3<=8.999,"MC 3 - 9",IF(X3<=23.999,"MC 9 - 24",IF(X3<=49.999,"MC 24 - 50",IF(X3>=50,"MC Above 50",IF(MONTH(F3)=4,"NEW RECEIPT",IF(SUM(J3:R3)=0,"9month no dispatch","6month no dispatch"))))))))
 
Upvote 0
Or this maybe?

=IF(X3<1,"MC 0 - 1",IF(X3<3,"MC 1 - 3", IF(X3<9,"MC 3 - 9",IF(X3<24,"MC 9 - 24",IF(X3<50,"MC 24 - 50",IF(X3>=50,"MC Above 50"))))))&" "&IF(MONTH(F3)=4,"NEW RECEIPT",IF(SUM(J3:R3)=0,"9 month no dispatch","6month no dispatch"))
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,694
Members
449,117
Latest member
Aaagu

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