Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25,
MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You didn't indicate the entire formula you've tried, but the general format
would be =if(isna(myformula),0,myformula) There's no comma following the ISNA; myformula is an argument of that function. Also be sure that your parentheses are balanced (three left parens require three right parens). "DarnTootn" wrote: I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25, MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have tried that with the "myformula" inserted in the correct places with
the correct paretheses... but I get an error... I guess I can't insert the =INDEX function inside the =IF(ISNA.... can I? "bpeltzer" wrote: You didn't indicate the entire formula you've tried, but the general format would be =if(isna(myformula),0,myformula) There's no comma following the ISNA; myformula is an argument of that function. Also be sure that your parentheses are balanced (three left parens require three right parens). "DarnTootn" wrote: I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25, MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You must have applied it incorrectly, try this
=IF(ISNA(INDEX(Crew!$A$1:$G$25,MATCH(B23,Crew!$A$1 :$A$25,),MATCH("Rate",Crew!$A$1:$G$1,))),0,INDEX(C rew!$A$1:$G$25,MATCH(B23,Crew!$A$1:$A$25,),MATCH(" Rate",Crew!$A$1:$G$1,))) -- Regards, Peo Sjoblom http://nwexcelsolutions.com "DarnTootn" wrote in message ... I have tried that with the "myformula" inserted in the correct places with the correct paretheses... but I get an error... I guess I can't insert the =INDEX function inside the =IF(ISNA.... can I? "bpeltzer" wrote: You didn't indicate the entire formula you've tried, but the general format would be =if(isna(myformula),0,myformula) There's no comma following the ISNA; myformula is an argument of that function. Also be sure that your parentheses are balanced (three left parens require three right parens). "DarnTootn" wrote: I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25, MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
thank you... it worked for me except that when it runs it always brings up a
0. not just when true "Peo Sjoblom" wrote: You must have applied it incorrectly, try this =IF(ISNA(INDEX(Crew!$A$1:$G$25,MATCH(B23,Crew!$A$1 :$A$25,),MATCH("Rate",Crew!$A$1:$G$1,))),0,INDEX(C rew!$A$1:$G$25,MATCH(B23,Crew!$A$1:$A$25,),MATCH(" Rate",Crew!$A$1:$G$1,))) -- Regards, Peo Sjoblom http://nwexcelsolutions.com "DarnTootn" wrote in message ... I have tried that with the "myformula" inserted in the correct places with the correct paretheses... but I get an error... I guess I can't insert the =INDEX function inside the =IF(ISNA.... can I? "bpeltzer" wrote: You didn't indicate the entire formula you've tried, but the general format would be =if(isna(myformula),0,myformula) There's no comma following the ISNA; myformula is an argument of that function. Also be sure that your parentheses are balanced (three left parens require three right parens). "DarnTootn" wrote: I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25, MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That would only happen if the cell it returns the value from is either blank
or zero -- Regards, Peo Sjoblom http://nwexcelsolutions.com "DarnTootn" wrote in message ... thank you... it worked for me except that when it runs it always brings up a 0. not just when true "Peo Sjoblom" wrote: You must have applied it incorrectly, try this =IF(ISNA(INDEX(Crew!$A$1:$G$25,MATCH(B23,Crew!$A$1 :$A$25,),MATCH("Rate",Crew!$A$1:$G$1,))),0,INDEX(C rew!$A$1:$G$25,MATCH(B23,Crew!$A$1:$A$25,),MATCH(" Rate",Crew!$A$1:$G$1,))) -- Regards, Peo Sjoblom http://nwexcelsolutions.com "DarnTootn" wrote in message ... I have tried that with the "myformula" inserted in the correct places with the correct paretheses... but I get an error... I guess I can't insert the =INDEX function inside the =IF(ISNA.... can I? "bpeltzer" wrote: You didn't indicate the entire formula you've tried, but the general format would be =if(isna(myformula),0,myformula) There's no comma following the ISNA; myformula is an argument of that function. Also be sure that your parentheses are balanced (three left parens require three right parens). "DarnTootn" wrote: I am trying us the =IF function with the following... =INDEX(Crew!$A$1:$G$25, MATCH(B23,Crew!$A$1:$A$25,), MATCH("Rate",Crew!$A$1:$G$1,)) But I get an error message... How would I do this so it will give a 0 in this cell??? I also am using this IF function in another cell with out an additional function like INDEX... Can I use two different functions like this together?? if so How... PLZ HELP.. THANKS |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
click & drag not working | Excel Discussion (Misc queries) | |||
amount of working days per month | Excel Discussion (Misc queries) | |||
Calculation with Working day of the year | Excel Discussion (Misc queries) | |||
Working days left in the month compared to previous months | Excel Worksheet Functions | |||
Working time and days | Excel Discussion (Misc queries) |