Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I wish to do two things if my "IF" statement is true: add "1" to a counter,
and post the new value of the counter to a different cell. e.g., =(IF(A6="F"),(($T4=$T4+1)*AND(B6=$T4))). (true) The function appears to be valid (I get no notice that it's wrong) but neither of the "true" actions takes place. i.e., the counter (in T4) doesn't get changed, and no value appears in "B6", so..... Can one take two actions if the IF statemtnt is true? If so, what do I need to do? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am not sure about why you want to do what you are trying to do. Why not
this: =IF(A6="F",$T4=$T4+1,"") Then in cell B6 enter =$T4 "Chachg" wrote: I wish to do two things if my "IF" statement is true: add "1" to a counter, and post the new value of the counter to a different cell. e.g., =(IF(A6="F"),(($T4=$T4+1)*AND(B6=$T4))). (true) The function appears to be valid (I get no notice that it's wrong) but neither of the "true" actions takes place. i.e., the counter (in T4) doesn't get changed, and no value appears in "B6", so..... Can one take two actions if the IF statemtnt is true? If so, what do I need to do? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
=IF(test,true,false) only ever returns "true"? | Excel Worksheet Functions | |||
=IF(VLOOKUP(C11,Group,2,FALSE)=D11,"True","Not Valid") and =IF(D1 | Excel Worksheet Functions | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
IF(VLOOKUP("MYDATA", MYNAME, 4) = 0, "TRUE", "FALSE") | Excel Programming |