Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Countifs between a certain value

HI

I need to count the values between a set value, and then only show how many times this count was more than 5. The values counted is variable only the between value is set

This is in the same column lets say from a1. DD is your set value, in the below example my answer should be 2 ( there are only 2occurrences where there are more than 5 data sets between the DD parameter)



1
5
4
7
DD
7
5
2
9
7
1
5
3
1
1
2
DD
6
8
7
1
DD
7
5
2
9
7
1
5
3
1
1
2
DD
6
8
7


Thank you
Gerhard
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default Countifs between a certain value

Hi again,

Am Fri, 3 Jun 2016 17:12:17 +0200 schrieb Claus Busch:

try it with an UDF:

Function CntSeries(myRng As Range) As Long


sorry, there is an error in the function.
Better try:

Function CntS(myRng As Range) As Long
Dim varMatch() As Variant
Dim myCnt As Long, i As Long
Dim myRows As String

myRows = "1:" & myRng.Rows.Count
myCnt = Application.CountIf(myRng, "DD")
ReDim varMatch(myCnt - 1)
For i = 1 To myCnt
With Application
varMatch(i - 1) = _
Application.Evaluate("=small(if(" & myRng.Address & _
"=""DD"",row(" & myRows & "))," & i & ")")
End With
Next
For i = LBound(varMatch) To UBound(varMatch) - 1
If varMatch(i + 1) - varMatch(i) - 1 5 Then
CntS = CntS + 1
End If
Next
If myRng.Rows.Count - varMatch(UBound(varMatch)) - 1 5 Then CntS =
CntS + 1
End Function


Regards
Claus B.
--
Windows10
Office 2016
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
COUNTIFS ? Malcolm Austin Excel Worksheet Functions 1 March 17th 14 10:22 PM
Countifs JP Ronse Excel Worksheet Functions 5 April 9th 10 03:29 AM
Countifs to Sumproduct for 2003 - was Simple Countifs.. from Fr Steve Excel Worksheet Functions 2 January 4th 09 06:36 PM
Two COUNTIFs Russell Excel Discussion (Misc queries) 2 August 19th 08 02:18 AM
countifs NewToVB Excel Programming 0 February 13th 08 10:26 PM


All times are GMT +1. The time now is 12:04 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"