Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good morning
Im trying to create a formula in sheet 1 that looks at values in sheets 2, 3 and 4 and searches for a 0. If it finds a 0 I want it to return a value of 'Fail', if it doesnt I want it to return a value of 'Pass'. As it stands I just keep getting 'VALUE' returned and I think the problem Im having maybe related to that fact that Im trying to make this work over various sheets. Any ideas? Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This example looks in cell A1 in sheets 2,3,4:
=IF(Sheet2!A1*Sheet3!A1*Sheet4!A1=0,"Fail","Pass") -- Gary's Student gsnu200702 "JaB" wrote: Good morning Im trying to create a formula in sheet 1 that looks at values in sheets 2, 3 and 4 and searches for a 0. If it finds a 0 I want it to return a value of 'Fail', if it doesnt I want it to return a value of 'Pass'. As it stands I just keep getting 'VALUE' returned and I think the problem Im having maybe related to that fact that Im trying to make this work over various sheets. Any ideas? Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Why not tell us the formula you're trying to use?
-- David Biddulph "JaB" wrote in message ... Good morning Im trying to create a formula in sheet 1 that looks at values in sheets 2, 3 and 4 and searches for a 0. If it finds a 0 I want it to return a value of 'Fail', if it doesnt I want it to return a value of 'Pass'. As it stands I just keep getting 'VALUE' returned and I think the problem Im having maybe related to that fact that Im trying to make this work over various sheets. Any ideas? Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Well, i thought the easiest approach would be to name the cells in the sheets
(as they do not run sequentially). So my formula currently reads as - =IF(ZEROS1="0","FAILED TO MEET","MEETS") "David Biddulph" wrote: Why not tell us the formula you're trying to use? -- David Biddulph "JaB" wrote in message ... Good morning Im trying to create a formula in sheet 1 that looks at values in sheets 2, 3 and 4 and searches for a 0. If it finds a 0 I want it to return a value of 'Fail', if it doesnt I want it to return a value of 'Pass'. As it stands I just keep getting 'VALUE' returned and I think the problem Im having maybe related to that fact that Im trying to make this work over various sheets. Any ideas? Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Why don't use AND / OR function to multiple check? For Example :
=IF(OR(SHEET1!A1=0,SHEET3!A1=0,SHEET5!A1=0),0,"Pas s") or =IF(AND(SHEET1!A1=0,SHEET3!A1=0,SHEET5!A1=0),0,"Pa ss") "JaB" wrote: Well, i thought the easiest approach would be to name the cells in the sheets (as they do not run sequentially). So my formula currently reads as - =IF(ZEROS1="0","FAILED TO MEET","MEETS") "David Biddulph" wrote: Why not tell us the formula you're trying to use? -- David Biddulph "JaB" wrote in message ... Good morning Im trying to create a formula in sheet 1 that looks at values in sheets 2, 3 and 4 and searches for a 0. If it finds a 0 I want it to return a value of 'Fail', if it doesnt I want it to return a value of 'Pass'. As it stands I just keep getting 'VALUE' returned and I think the problem Im having maybe related to that fact that Im trying to make this work over various sheets. Any ideas? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Data exctraction from multiple sheets | Excel Discussion (Misc queries) | |||
Copy formula into multiple cells without changing range | Excel Worksheet Functions | |||
formula to add up on multiple sheets | Excel Worksheet Functions | |||
Recurring Excel Formula error - multiple users affected! | Excel Discussion (Misc queries) | |||
insert Rows with Formulas in Place on Multiple Sheets? | Excel Discussion (Misc queries) |