Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default How to get string to use IF formula only when another cell is text

Hi all,

Thanks for any suggestions, although I'm sure this is very simple, for
anyone other than myself...

If cell $A1 is text I want to use an IF formula. But if A1 is blank (or
number) I want to return a blank cell as the result.

ex:
A B C
1 boy 0 x
2 hat
3 0
4
5 123 0
6 124

The formula I've tried (that doesn't work) is:

=IF(ISTEXT(A1),(=if(B1=0,"x",""),"")
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 265
Default How to get string to use IF formula only when another cell is text

Try...

=IF(ISTEXT(A1),IF(B1<"",IF(B1=0,"x",""),""),"")

Hope this helps!

http://www.xl-central.com

In article ,
GoinCrazy wrote:

Hi all,

Thanks for any suggestions, although I'm sure this is very simple, for
anyone other than myself...

If cell $A1 is text I want to use an IF formula. But if A1 is blank (or
number) I want to return a blank cell as the result.

ex:
A B C
1 boy 0 x
2 hat
3 0
4
5 123 0
6 124

The formula I've tried (that doesn't work) is:

=IF(ISTEXT(A1),(=if(B1=0,"x",""),"")

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default How to get string to use IF formula only when another cell is text

=IF(AND(ISTEXT(A1),B1=0),"x","")


"GoinCrazy" wrote:

Hi all,

Thanks for any suggestions, although I'm sure this is very simple, for
anyone other than myself...

If cell $A1 is text I want to use an IF formula. But if A1 is blank (or
number) I want to return a blank cell as the result.

ex:
A B C
1 boy 0 x
2 hat
3 0
4
5 123 0
6 124

The formula I've tried (that doesn't work) is:

=IF(ISTEXT(A1),(=if(B1=0,"x",""),"")

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Nested formula to search a text string and return specific text Barbie Excel Worksheet Functions 10 February 21st 09 07:40 AM
Formula to return a value for a portion of a text string in a cell NanGio Excel Discussion (Misc queries) 2 January 29th 09 10:36 PM
Sumif text is contained winthin a longer text string in a cell Johnny M[_2_] Excel Worksheet Functions 3 March 21st 07 02:50 PM
Return a formula as text string to a cell Sharon Excel Worksheet Functions 4 April 18th 06 05:40 PM
Need macro to insert text string while inside cell (formula) BrianB Excel Discussion (Misc queries) 0 May 31st 05 03:18 PM


All times are GMT +1. The time now is 10:43 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"