SOLVED

If function question

Copper Contributor

I am looking for the following.

I want to use the if function as follow:

condition : if cel a = a number than cel b = value 1

if cel a = text than cel b = value 2

 

Tnx for the help

2 Replies
best response confirmed by stevendebuf2035 (Copper Contributor)
Solution

@stevendebuf2035 

Perhaps

=IF( ISTEXT(A1), <value2>, <value1> )
Hai ,
Place the formula =IF(ISNUMBER(CELL a) , Value 1,Value 2)
Place the formula in the CELL b
If the Result values are not numbers type them in Double Colons(" Value ")
1 best response

Accepted Solutions
best response confirmed by stevendebuf2035 (Copper Contributor)
Solution

@stevendebuf2035 

Perhaps

=IF( ISTEXT(A1), <value2>, <value1> )

View solution in original post