• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Filter

sdsurzh

Member
Hi,


Suppose in A COLUMN contains both text as well as number how I can filter only text (without using multiple option from dropdown).


Thanks,

Suresh Kumar S
 
Hi Suresh ,


If you can use a helper column , enter the following formula , in the helper column :


=ASC(A1)=A1


where your data starts from A1.


The above formula will return TRUE for text , and FALSE for numbers. Alternatively , you can use :


=TYPE(A1)


which will return 1 for numbers and 2 for text.


Filter on this helper column.


Narayan
 
Hi Suresh,


Do you allow me to do the same in two steps...


* Select column.

* Select only Numbers.. (ALT + E + G + S + O + U) Go To > Special > Constant > Only Number..

* OK.. and set any color to the selected cells..

* Now apply filter by color..


Regards,

Deb
 
Hi Suresh,


You can also try below:


Just select your column A and Press Alt+HLN key combination and select option "Use formula to format cell".


write any one of the below formula:


=ISTEXT(A1)=True , and select color to format.


Or


=Type(A1)=2 , and select color to format.


The above will highlight cells containing text.


Now you can apply filter by color as said by Deb.


P.S. Just need favor from Deb to know how to apply filter using color, as honestly speaking, I don't know how to do it.


Thanks & Regards,

Anupam Tiwari
 
Hi Anupam..

[pre]
Code:
=ISERROR("OOPS.. I just realise.. you are using <= 2003.. my fault.. :(", _
"Apply Filter > Filter by Color.."
[/pre]
PS: oops same mistake. again.. you dont have ISERROR also.. :(


@Krishna..

Nice TRICKS admin...

I tried to be smart and apply "?*" to ignore blank cells from Numberic search LOL.. and you know the rest.. :( but anyway.. learned a lot from you.. :)


Regards,

Deb
 
Back
Top