IF,s SMALLl and LARGE and number arangment

Adventure_Harry

New Member
Joined
Dec 18, 2013
Messages
7
Good Day

Should be an easy one but need some help

Windows 7, Excel 2010

I have three columns A,B,C where the user enters measurements . These measurements need to be copied to D,E,F but when the smallest number is 30 or less the dimensions need to be arranged from the biggest Col D to smallest Col F. If the smallest number is bigger than 30 all measurements should be copied as is A=D B=E C=F

I am sure I can figure it out but have some time constraints. Let see who is the faster me or the board

Harry
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
In D2: =IF(OR($A2<30,$B2<30,$C2<30),MAX($A2:$C2),A2)
In E2: =IF(OR($A2<30,$B2<30,$C2<30),SUM(A2:C2)-D2-F2,B2)
In F2: =IF(OR($A2<30,$B2<30,$C2<30),MIN($A2:$C2),C2)
 
Upvote 0
Thank you SIr

I bow to your Knowledge

The only Thing I changed,due to a circular refrence warning when I copied, was
In E2: =IF(OR(A2<30,B2<30,C2<30),LARGE(A2:C2,2),B2)

Thank you once again:)
 
Upvote 0
haha, thats what i wanted to use, but couldn't remember the Large bit!
 
Upvote 0

Forum statistics

Threads
1,214,909
Messages
6,122,189
Members
449,072
Latest member
DW Draft

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