Generate new table

zorans

New Member
Joined
Nov 14, 2003
Messages
32
Hi,
here is my problem
(sorry if it is already mentioned,
I could't find it)

I have big table and I want to generate new table
but extracting only those rows which fulfill certain criteria

Example:
First table:
A 20
B 40
C 25
D 36

New table:
condition: rows with entry higher than 30

B 50
D 36

How can I do that?

Thank you for assitance!

Best regards
Zoran
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
zorans

Try looking up AutoFilter in the Excel Help and see if you think that might help.
 
Upvote 0
I want new table

Thanks for your effort!

Is it possiblle to make some kind of report in another table?

Thks

Zoran
 
Upvote 0
What sort of report do you have in mind? Example of data and report?
 
Upvote 0
Data in row

Report should show all data in row,
according to criteria

To be more specific,
new table will be in different sheet, and my manager
would look only that sheet,
not messing with database
 
Upvote 0
OK, let's see if this is headed in the right direction?

Data Sheet looks like this.
Mr Excel.xls
ABCD
1A20
2B40
3C25
4D36
5E89
6F20
7G31
8
Data Sheet


Now, on the Result Sheet I have some 'helper' data as well as the result table:

Enter the number you want to compare to (30 in your original example) in B1 (green in my example).

B2: =COUNTIF('Data Sheet'!B:B,">"&B1)
B3: =COUNT('Data Sheet'!B:B)
C1 (copied down at least the number of rows given by the value in B3): =IF(ROW()>$B$3,"",IF(INDEX('Data Sheet'!B:B,ROW())>$B$1,ROW(),""))
F1 (copied across 1 column and down at least the number of rows given by the value in B2): =IF(ROW()>$B$2,"",INDEX('Data Sheet'!A:A,SMALL($C:$C,ROW())))
Mr Excel.xls
ABCDEFGH
1Lower Limit:30 Results:B40
2No. greater than lower limit:42D36
3Table length on Data Sheet:7 E89
44G31
55  
6  
77 
Result Sheet
 
Upvote 0

Forum statistics

Threads
1,203,483
Messages
6,055,673
Members
444,807
Latest member
RustyExcel

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