Selecting data based on some conditons

aniketiitr

New Member
Joined
Aug 20, 2014
Messages
36
Hi, i have this data
A B
0.4 0.2
0.5 0.7
0.84 0.61
0.92 0.23

and so on

Now i want to select and separate data based on following two conditions (to be done one by one)
1. A>0.80 when B>0.60
2. A<0.90 when B<0.20
How to do these two
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I'm not sure what you mean by "select and separate". Is it your intention to apply a filter of some kind? Because that's not difficult. If you're looking at a formula to identify the conditions, how about this (note that I modified one of your data points to make it meet the second condtion):
Excel Workbook
ABCD
1AB
20.40.19Second Condition
30.50.7
40.840.61First Condition
50.920.23
Sheet2
Excel 2010
Cell Formulas
RangeFormula
D2=IF( AND( A2 > 0.8, B2 > 0.6), "First Condition", IF( AND( A2< 0.9, B2< 0.2), "Second Condition", ""))
D3=IF( AND( A3 > 0.8, B3 > 0.6), "First Condition", IF( AND( A3< 0.9, B3< 0.2), "Second Condition", ""))
D4=IF( AND( A4 > 0.8, B4 > 0.6), "First Condition", IF( AND( A4< 0.9, B4< 0.2), "Second Condition", ""))
D5=IF( AND( A5 > 0.8, B5 > 0.6), "First Condition", IF( AND( A5< 0.9, B5< 0.2), "Second Condition", ""))
 
Upvote 0

Forum statistics

Threads
1,223,248
Messages
6,171,027
Members
452,374
Latest member
keccles

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