Possible IS(TEXT) & IS(NUMBER) Question

Disarmonious

Board Regular
Joined
Oct 31, 2016
Messages
139
Hello,

I'm working with 3 cells on this question. I want cell (G6) to display a left arrow ("×" with 'Wingdings' font) and when a name is typed or pasted into cell (E6), I then want a right arrow ("Ø" with 'Wingdings' font) to replace the left arrow in this cell, where when the user enters a number into cell (I6), this arrow (both arrows) will disappear, and the cell be blank. I've been trying to create this formula for an hour or so, and it's driving me crazy. I know there's a simple formula out there? Here's what I have so far;

Cell G4: =IF(ISTEXT(E6),"Ø",IF(ISNUMBER(I6),"","×"))

Of course, this formula doesn't tell cell (G6) to display nothing when information is entered into cells (E6) and (I6)
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
It'd difficult to understand which value you want based on which cells..

Fill in the ?? marks

E6 Contains Text AND I6 Contains Number: I Want ???
E6 Contains Text AND I6 is Empty: I Want ???
E6 is Empty and I6 Contains Number: I Want ???
E6 is Empty and I6 is Empty: I Want ???
 
Upvote 0
Hello,

I'm sorry to sound so confusing.

E6 Contains Text AND I6 Contains Number: G6 = Blank or Nothing
E6 Contains Text AND I6 is Empty: Right Arrow Pointing to I6
E6 is Empty and I6 Contains Number: Left Arrow Pointing to E6
E6 is Empty and I6 is Empty: Left Arrow Pointing to E6
 
Upvote 0
"x" = Left Arrow
"0" = Right Arrow

=IF(E6="","0",IF(I6="","x",""))

This is making a couple assumptions in order to make it simpler..
Assumes that E6 can only be a TEXT value or EMPTY, in other words, if E6 is NOT empty, it therefore must contain a Text value.
Same for I6, it can only contain a Number or Empty, if it's NOT empty, it therefore must contain a number.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,076
Members
449,094
Latest member
mystic19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top