Frequency function with text

Sukhvinder Singh

New Member
Joined
Feb 14, 2019
Messages
3
Hi everyone,
below are two columns and I want result from column1 like below here in the RESULT column, I can't use frequency function because values are not strings. Could you please help me here?
COLUMN1RESULT
SVC-12
SVC-10
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0
SVC-132
SVC-130
FALSE0
FALSE0
FALSE0
FALSE0
FALSE0

<colgroup><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
COLUMN1RESULT
SVC-12sortedcount the different
SVC-10items
FALSE0
FALSE0
FALSE0SVC-12
FALSE0SVC-12
FALSE0SVC-132
SVC-132SVC-132
SVC-130FALSE7
FALSE0FALSE7
FALSE0FALSE7
FALSE7
FALSE7
FALSE7
FALSE7
or just use a pivot table

<colgroup><col width="64" span="10" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
COLUMN1RESULTafter Match function
=match(range,range,0)
then frequency
=frequency(match(range,range,0),
match(range,range,0))
SVC-1222
sortedcount the different
SVC-1020items
FALSE037
FALSE030
FALSE030SVC-12
FALSE030SVC-12
FALSE030SVC-132
SVC-13282SVC-132
SVC-13080FALSE7
FALSE030FALSE7
FALSE030FALSE7
FALSE7
FALSE7
FALSE7
FALSE7
or just use a pivot table

<tbody>
</tbody>
I can't, I just need a logical formula for this. I can use match function and then frequency function but it'll give me the count of cells which contain false value that I don't
 
Upvote 0
I can't use pivot, I just need a logical formula for this, I can use match function and then frequency, but it'll get the value of cells which contain false that I don't want. You can see below

COLUMN1RESULTmatchFrequency
SVC-1222
SVC-1020
FALSE055
FALSE050
FALSE050
SVC-13272
SVC-13070
FALSE050
FALSE050

<colgroup><col width="64" span="4" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
Maybe - Notice that formula in B3 is different than formula in B2. Formula in B3 would be copied down.
Excel Workbook
AB
1COLUMN1RESULT
2SVC-12
3SVC-10
4FALSE0
5FALSE0
6FALSE0
7FALSE0
8FALSE0
9FALSE0
10SVC-132
11SVC-130
12FALSE0
13FALSE0
14FALSE0
15FALSE0
16FALSE0
Sheet
 
Upvote 0
COLUMN1RESULT
SVC-12
SVC-10
FALSE0
FALSE0
FALSE0col H
FALSE0
FALSE0
SVC-132SVC-122ROW 9
SVC-130SVC-12row 10
FALSE0#N/A
FALSE0#N/A
#N/A
#N/A
SVC-1333
SVC-133
SVC-133
#N/A
#N/A
the word false is a special word in excel
so I replaced with #n/a
using ifiserror ignores the #n/a's in the list
this formula FOR THE FIRST ITEM IN THE LIST IN COLUMN H
=IF(G9="","",G9)
THIS FORMULA FOR THE SECOND ITEM IN THE LIST, DRAGGED DOWNCOLUMN H OF COURSE
=IF(G10="","",IF(G9="",G10,IF(AND(F10=F9,G10=G9),"",G10)))

<colgroup><col width="64" span="16" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

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