Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a listing of $values, %values and plain numbers. I want to filter
only for the values ending with %. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
let's say you have a list of values in column A:
label 1 10 $10.25 34% and you want to show only the % values. First enter this UDF: Function perzent(R As Range) As Boolean ' gsnu Dim s As String s = R.NumberFormat If Right(s, 1) = "%" Then perzent = True Else perzent = False End If End Function Then in B1 ente and label cell and in B2 enter: =perzent(A2) and copy down Only the % values will show TRUE. Pull down Filter Autofilter and select TRUE from the filter pull-down. -- Gary''s Student "Janet M." wrote: I have a listing of $values, %values and plain numbers. I want to filter only for the values ending with %. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto Filter - Protected sheet/workbook | Excel Discussion (Misc queries) | |||
The filter didn't show all (2,254) names when I set it up | Excel Discussion (Misc queries) | |||
Macro for Filter Switches ... Maybe??? | Excel Discussion (Misc queries) | |||
Filter Switches vs Macro? | Excel Discussion (Misc queries) | |||
advanced filter won't allow me to filter on bracketed text (-456.2 | Excel Discussion (Misc queries) |