need help with multiple formulas in one cell

stearnslending

New Member
Joined
May 13, 2013
Messages
9
Theres a couple things i want to do in one cell.

I have three cells.

The first two cells B6 and B7 have two values

In the third cell B9 I have an existing formula =ROUNDDOWN(MIN(B6,B7),0)

It works great, it inputs the lower value of the two. Now, heres my problem.

In the same cell B9 I would like to also add another layer. If the lower of the two is greater than 5000 input $5000

I cannot figure it out. PLEASE HELLP!!
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Apologies, I misread the original question.......Just change the '<' for a '>'

So

=If(ROUNDDOWN(MIN(B6,B7),0) >5000,5000,ROUNDDOWN(MIN(B6,B7),0)
 
Upvote 0
Not sure why?

Try this..........Only difference is a bracket, but excel should add that automatically anyway........This works fine on mine?

=IF(ROUNDDOWN(MIN(B6,B7),0)>5000,5000,ROUNDDOWN(MIN(B6,B7),0))

If you have issues, can you copy and paste your exact formula you are having the issue with onto this post?
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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