Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Column A Column B A - VOA C OA C VA Y VO - VO C I want a formula which will return a 1 if there is an "A" in column A and is not "-" in column B nad a zero if both those conditions are not met. So in the example above, the 2nd, 3rd, and 4th rows would return a 1 and the 1st, 5th, and 6th rows would return a 0. Help please. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF(OR(ISERROR(FIND("A",A1)),B1="-"),0,1) HTH, Elkar "Sung" wrote: Column A Column B A - VOA C OA C VA Y VO - VO C I want a formula which will return a 1 if there is an "A" in column A and is not "-" in column B nad a zero if both those conditions are not met. So in the example above, the 2nd, 3rd, and 4th rows would return a 1 and the 1st, 5th, and 6th rows would return a 0. Help please. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
in column c:
=IF(AND(ISNUMBER(FIND("A",A2)),B2<"-"),1,0) HTH "Sung" wrote: Column A Column B A - VOA C OA C VA Y VO - VO C I want a formula which will return a 1 if there is an "A" in column A and is not "-" in column B nad a zero if both those conditions are not met. So in the example above, the 2nd, 3rd, and 4th rows would return a 1 and the 1st, 5th, and 6th rows would return a 0. Help please. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks to both of you for your help.
"Sung" wrote: Column A Column B A - VOA C OA C VA Y VO - VO C I want a formula which will return a 1 if there is an "A" in column A and is not "-" in column B nad a zero if both those conditions are not met. So in the example above, the 2nd, 3rd, and 4th rows would return a 1 and the 1st, 5th, and 6th rows would return a 0. Help please. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF Question | Excel Discussion (Misc queries) | |||
Newbie Question - Subtraction Formula Question | Excel Discussion (Misc queries) | |||
Question | Excel Discussion (Misc queries) | |||
The question is an excel question that I need to figure out howto do in excel. | Excel Worksheet Functions | |||
Question about {} | Excel Worksheet Functions |