Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 95
Default How do you display IF statement results in a different cell

I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default How do you display IF statement results in a different cell

A formula can only affect the cell that it is in - you can't "push"
data to another cell. Perhaps if you could give us some more detail of
what you want to do, we might be able to help you further.

Pete

On Jun 22, 2:28 pm, Neall wrote:
I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default How do you display IF statement results in a different cell

You can't say:-

=if(this cell = this value, another cell = that value)

If you want the result in another cell then you can copy the result of the
formula with

=A1

Mike

"Neall" wrote:

I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,942
Default How do you display IF statement results in a different cell

hi,
The if statement must be located in the cell that the results will be
returned to.

Regards
FSt1

"Neall" wrote:

I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 95
Default How do you display IF statement results in a different cell

Thanks, basically I have a summary sheet which I want to display data of
"current in progress works". On the other worksheet I have the a column that
tells me which company is in progress (100 companies) so what I want to do is;

on worksheet 2 read colum O3 if there is a 1 (meaning in progress) then take
the company name A3 and display it in summary sheet cell B5, the O and A rows
always are the same so if O33 has a 1 A33 is always the company that relates
to that cell, I have seperate IF statements for each row at this point.

Now not all 100 companies will be "in progress" so to avoid a bunch of void
cells under each other I want to put all result in B5 (summary sheet) under
each other so its a clean flowing list

Does that make sense?

Thanks for your help in advance
Neall


--
Neall


"Pete_UK" wrote:

A formula can only affect the cell that it is in - you can't "push"
data to another cell. Perhaps if you could give us some more detail of
what you want to do, we might be able to help you further.

Pete

On Jun 22, 2:28 pm, Neall wrote:
I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default How do you display IF statement results in a different cell

Neall,

The easiest way to do this is to use Data Filters on column O of worksheet 1, and use them to
display only cells with 1 as the value. All other rows will be hidden. Don't use another sheet at
all....

HTH,
Bernie
MS Excel MVP


"Neall" wrote in message
...
Thanks, basically I have a summary sheet which I want to display data of
"current in progress works". On the other worksheet I have the a column that
tells me which company is in progress (100 companies) so what I want to do is;

on worksheet 2 read colum O3 if there is a 1 (meaning in progress) then take
the company name A3 and display it in summary sheet cell B5, the O and A rows
always are the same so if O33 has a 1 A33 is always the company that relates
to that cell, I have seperate IF statements for each row at this point.

Now not all 100 companies will be "in progress" so to avoid a bunch of void
cells under each other I want to put all result in B5 (summary sheet) under
each other so its a clean flowing list

Does that make sense?

Thanks for your help in advance
Neall


--
Neall


"Pete_UK" wrote:

A formula can only affect the cell that it is in - you can't "push"
data to another cell. Perhaps if you could give us some more detail of
what you want to do, we might be able to help you further.

Pete

On Jun 22, 2:28 pm, Neall wrote:
I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 95
Default How do you display IF statement results in a different cell

Thanks I like the Idea however, when I filter it truncates the other summary
information, is there anyway I can just effect that one column when I filter?


--
Neall


"Bernie Deitrick" wrote:

Neall,

The easiest way to do this is to use Data Filters on column O of worksheet 1, and use them to
display only cells with 1 as the value. All other rows will be hidden. Don't use another sheet at
all....

HTH,
Bernie
MS Excel MVP


"Neall" wrote in message
...
Thanks, basically I have a summary sheet which I want to display data of
"current in progress works". On the other worksheet I have the a column that
tells me which company is in progress (100 companies) so what I want to do is;

on worksheet 2 read colum O3 if there is a 1 (meaning in progress) then take
the company name A3 and display it in summary sheet cell B5, the O and A rows
always are the same so if O33 has a 1 A33 is always the company that relates
to that cell, I have seperate IF statements for each row at this point.

Now not all 100 companies will be "in progress" so to avoid a bunch of void
cells under each other I want to put all result in B5 (summary sheet) under
each other so its a clean flowing list

Does that make sense?

Thanks for your help in advance
Neall


--
Neall


"Pete_UK" wrote:

A formula can only affect the cell that it is in - you can't "push"
data to another cell. Perhaps if you could give us some more detail of
what you want to do, we might be able to help you further.

Pete

On Jun 22, 2:28 pm, Neall wrote:
I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default How do you display IF statement results in a different cell

Neall,

That is the idea behind filtering - to hide the other information that doesn't have your desired
value in the selected field.

If you have some blank cells or you have multiple rows of data but only one flag (your table is not
a true database) then you need to fill in the blanks with formulas to pick up the desired 1 values.

HTH,
Bernie
MS Excel MVP


"Neall" wrote in message
...
Thanks I like the Idea however, when I filter it truncates the other summary
information, is there anyway I can just effect that one column when I filter?


--
Neall


"Bernie Deitrick" wrote:

Neall,

The easiest way to do this is to use Data Filters on column O of worksheet 1, and use them to
display only cells with 1 as the value. All other rows will be hidden. Don't use another sheet
at
all....

HTH,
Bernie
MS Excel MVP


"Neall" wrote in message
...
Thanks, basically I have a summary sheet which I want to display data of
"current in progress works". On the other worksheet I have the a column that
tells me which company is in progress (100 companies) so what I want to do is;

on worksheet 2 read colum O3 if there is a 1 (meaning in progress) then take
the company name A3 and display it in summary sheet cell B5, the O and A rows
always are the same so if O33 has a 1 A33 is always the company that relates
to that cell, I have seperate IF statements for each row at this point.

Now not all 100 companies will be "in progress" so to avoid a bunch of void
cells under each other I want to put all result in B5 (summary sheet) under
each other so its a clean flowing list

Does that make sense?

Thanks for your help in advance
Neall


--
Neall


"Pete_UK" wrote:

A formula can only affect the cell that it is in - you can't "push"
data to another cell. Perhaps if you could give us some more detail of
what you want to do, we might be able to help you further.

Pete

On Jun 22, 2:28 pm, Neall wrote:
I am creating a bunch of if statements but want the results to return to
cells on a different worksheet

Thanks in advance
--
Neall








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
IF statement colored results matles007 Excel Worksheet Functions 1 May 18th 06 02:29 PM
can I use 2 formulas in 1 cell and display both results chris New Users to Excel 4 March 30th 06 12:26 PM
if/then statement that results in Yes/No Patty via OfficeKB.com Excel Discussion (Misc queries) 3 August 3rd 05 02:26 PM
IF Statement with Average Function results in #Value! Paul Excel Discussion (Misc queries) 5 December 28th 04 08:11 AM
adding if statement results Robb27 Excel Worksheet Functions 3 November 20th 04 05:27 AM


All times are GMT +1. The time now is 10:22 AM.

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

About Us

"It's about Microsoft Excel"