How to list results of certain conditions on other sheets?

jpbonono

Board Regular
Joined
Aug 18, 2013
Messages
154
MS 2003

Sheet 1 has condition:
(Cell BK)
[TABLE="width: 165"]
<tbody>[TR]
[TD="class: xl24, width: 165"]=IF(BJ7=TRUE,B7,0)[/TD]
[/TR]
</tbody>[/TABLE]

QUESTIONS:
1.) Values in B7 are the NAMES OF STUDENTS, if it happens to be false, is it possible to empty cell instead of zero? How?

2.) How am I going to "list" all the results in BK on sheet 2?

Thanks in advance! :D
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
MS 2003

Sheet 1 has condition:
(Cell BK)
[TABLE="width: 165"]
<tbody>[TR]
[TD="class: xl24, width: 165"]=IF(BJ7=TRUE,B7,0)
[/TD]
[/TR]
</tbody>[/TABLE]

QUESTIONS:
1.) Values in B7 are the NAMES OF STUDENTS, if it happens to be false, is it possible to empty cell instead of zero? How?

2.) How am I going to "list" all the results in BK on sheet 2?

Thanks in advance! :D

1) One of:

BK7, just enter and copy down:
Rich (BB code):
=IF(BJ7=TRUE,B7,"")

=IF(BJ7,B7,"")

2)

Sheet2

A2, control+shift+enter, not just enter, and copy down:
Rich (BB code):
=IFERROR(INDEX(Sheet1!$BK$7:$BK$100,
  SMALL(IF(Sheet1!$BK$7:$BK$100="","",
  ROW(Sheet1!$BK$7:$BK$100)-ROW(Sheet1!$BK$7)+1),ROWS(A$2:A2))),"")
 
Upvote 0

Forum statistics

Threads
1,223,889
Messages
6,175,226
Members
452,620
Latest member
dsubash

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