Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default checking input in a cell and return by copying info from a other c

What I want to do is the following. I have a worksheet in which I have
created the following; Name-Column , select-Column. I now want to created a
formula in a new sheet which check if the are "x" in the select column and
copy the names of the name-columns to cells in that new sheet. (which is in
the same workbook) is that possible? If so please let me know.

Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default checking input in a cell and return by copying info from a other c

To find a single "x" you would use VLOOKUP(). For all the "x"'s, see:

http://office.microsoft.com/en-us/ex...260381033.aspx
--
Gary''s Student - gsnu201001


"Golf-Iron7" wrote:

What I want to do is the following. I have a worksheet in which I have
created the following; Name-Column , select-Column. I now want to created a
formula in a new sheet which check if the are "x" in the select column and
copy the names of the name-columns to cells in that new sheet. (which is in
the same workbook) is that possible? If so please let me know.

Thanks in advance.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default checking input in a cell and return by copying info from a oth

"Gary"s Student;

Thanks for your answer but that is not quit what I was looking for. Maybe I
need to clearly explain what I want to do.

Column B contains "x" values which have been filled in in more than one
cell. (B1;B3;B5 etc) Column A contains Names. (A1;A3;A5 etc.) And now I want
in a different worksheet in the same workbook all the valves of Column A only
if Column B is "x"

The return value needs to be one per cell. So if there are let's say 3 names
each name needs to be returned in a different cell.

I think this can't be done with formules but maybe someone has got an idea.








"Gary''s Student" wrote:

To find a single "x" you would use VLOOKUP(). For all the "x"'s, see:

http://office.microsoft.com/en-us/ex...260381033.aspx
--
Gary''s Student - gsnu201001


"Golf-Iron7" wrote:

What I want to do is the following. I have a worksheet in which I have
created the following; Name-Column , select-Column. I now want to created a
formula in a new sheet which check if the are "x" in the select column and
copy the names of the name-columns to cells in that new sheet. (which is in
the same workbook) is that possible? If so please let me know.

Thanks in advance.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default checking input in a cell and return by copying info from a oth

Ok guys the following is the problem I really hope there is someone who can
help.

Sheet 1 contains the following.

Column A Column B
piet x
kees
jan x
joost x
etc

Sheet 2

Column A needs to show all the names in seperate cells which are marked with
a x in sheet 1.


Any idea !?!?!?!?!?!





"Golf-Iron7" wrote:

"Gary"s Student;

Thanks for your answer but that is not quit what I was looking for. Maybe I
need to clearly explain what I want to do.

Column B contains "x" values which have been filled in in more than one
cell. (B1;B3;B5 etc) Column A contains Names. (A1;A3;A5 etc.) And now I want
in a different worksheet in the same workbook all the valves of Column A only
if Column B is "x"

The return value needs to be one per cell. So if there are let's say 3 names
each name needs to be returned in a different cell.

I think this can't be done with formules but maybe someone has got an idea.








"Gary''s Student" wrote:

To find a single "x" you would use VLOOKUP(). For all the "x"'s, see:

http://office.microsoft.com/en-us/ex...260381033.aspx
--
Gary''s Student - gsnu201001


"Golf-Iron7" wrote:

What I want to do is the following. I have a worksheet in which I have
created the following; Name-Column , select-Column. I now want to created a
formula in a new sheet which check if the are "x" in the select column and
copy the names of the name-columns to cells in that new sheet. (which is in
the same workbook) is that possible? If so please let me know.

Thanks in advance.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default checking input in a cell and return by copying info from a oth

Hi,

Try this.

Suppose your data is in range A2:B5 on sheet1. On sheet2, type * in cell
C3. In cell D3, enter the following array formula (Ctrl+Shift+Enter) and
copy down

=IF(ISERROR(INDEX(Sheet1!$A$1:$B$5,SMALL(IF(Sheet1 !$B$1:$B$7=$C$3,ROW(Sheet1!$A$1:$A$7)),ROW(Sheet1! 1:1)),1)),"",INDEX(Sheet1!$A$1:$B$5,SMALL(IF(Sheet 1!$B$1:$B$7=$C$3,ROW(Sheet1!$A$1:$A$7)),ROW(Sheet1 !1:1)),1))

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Golf-Iron7" wrote in message
...
Ok guys the following is the problem I really hope there is someone who
can
help.

Sheet 1 contains the following.

Column A Column B
piet x
kees
jan x
joost x
etc

Sheet 2

Column A needs to show all the names in seperate cells which are marked
with
a x in sheet 1.


Any idea !?!?!?!?!?!





"Golf-Iron7" wrote:

"Gary"s Student;

Thanks for your answer but that is not quit what I was looking for. Maybe
I
need to clearly explain what I want to do.

Column B contains "x" values which have been filled in in more than one
cell. (B1;B3;B5 etc) Column A contains Names. (A1;A3;A5 etc.) And now I
want
in a different worksheet in the same workbook all the valves of Column A
only
if Column B is "x"

The return value needs to be one per cell. So if there are let's say 3
names
each name needs to be returned in a different cell.

I think this can't be done with formules but maybe someone has got an
idea.








"Gary''s Student" wrote:

To find a single "x" you would use VLOOKUP(). For all the "x"'s, see:

http://office.microsoft.com/en-us/ex...260381033.aspx
--
Gary''s Student - gsnu201001


"Golf-Iron7" wrote:

What I want to do is the following. I have a worksheet in which I
have
created the following; Name-Column , select-Column. I now want to
created a
formula in a new sheet which check if the are "x" in the select
column and
copy the names of the name-columns to cells in that new sheet. (which
is in
the same workbook) is that possible? If so please let me know.

Thanks in advance.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using codes to input saved info into a cell? chris1982 New Users to Excel 1 December 30th 09 06:37 PM
Replacing Input Box in Macro with Info Picked Up from Active Cell? Wart Excel Discussion (Misc queries) 3 August 14th 08 08:45 PM
Copying cell with input range to different worksheet Doug T[_2_] Excel Worksheet Functions 4 October 4th 07 04:11 PM
How do I get a cell to change size with the info I input? Diane New Users to Excel 1 January 14th 07 07:32 PM
Fill a seperate cell with info depending on the input in another c Nevermore Excel Discussion (Misc queries) 2 November 14th 06 11:33 PM


All times are GMT +1. The time now is 11:29 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"