![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 22
|
With the formula:
IF(C2=C1,false,C2) how do i include the condition that: if A2 contains a value (i.e. is not blank) then leave as C2?? |
|
|
|
|
|
#2 | |
|
Board Regular
Join Date: Apr 2002
Location: Surrey, United Kingdom
Posts: 75
|
Quote:
Try: =IF(C2=C1,false,If(A2<>"",C2,false)) Or if I've understood wrong and you want the value to be C2 only when C2 is not equal to C1 AND A2 is not equal to nothing then: =If(And(C2=C1,A2<>""),C2,false) Nibbs [ This Message was edited by: Nibbles on 2002-04-30 08:35 ] |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|