Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am having a brain fade, How do I get an if statement to look at a cell and
if there is anything in that cell, then that cell otherwise a different cell? Below is what I have =IF('Input Form'!C32=" ",'Input Form'!C32,'Input Form'!H17) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Looks like you are trying to do it backwards, you are saying if it is blank,
put the data in there(which keeps it blank), you need to do that when it is not blank from this IF('Input Form'!C32=" ",'Input Form'!C32, to this IF('Input Form'!C32<" ",'Input Form'!C32, -- -John Please rate when your question is answered to help us and others know what is helpful. "krc547" wrote: I am having a brain fade, How do I get an if statement to look at a cell and if there is anything in that cell, then that cell otherwise a different cell? Below is what I have =IF('Input Form'!C32=" ",'Input Form'!C32,'Input Form'!H17) |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi
i think your logic is backwards. try this =IF('Input Form'!C32=" ",'Input Form'!H17,'Input Form'!C32) bring back h17 if c32 is empty else c32 if c32 is not empty. Regards FSt1 "krc547" wrote: I am having a brain fade, How do I get an if statement to look at a cell and if there is anything in that cell, then that cell otherwise a different cell? Below is what I have =IF('Input Form'!C32=" ",'Input Form'!C32,'Input Form'!H17) |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try it:
=IF('Input Form'!C32="";'Input Form'!C32;'Input Form'!H17) Cheers "krc547" escreveu: I am having a brain fade, How do I get an if statement to look at a cell and if there is anything in that cell, then that cell otherwise a different cell? Below is what I have =IF('Input Form'!C32=" ",'Input Form'!C32,'Input Form'!H17) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible | Excel Discussion (Misc queries) | |||
Build excel formula using field values as text in the formula | Excel Worksheet Functions | |||
match formula - 2 excel files:#1 hasthis formula, 2nd has the Raw | Excel Worksheet Functions | |||
Excel 2002 formula displayed not value formula option not checked | Excel Worksheet Functions | |||
How do I view formula results intead of formula in excel? | Excel Worksheet Functions |