Hi!
I want to find a way to fix this:
I have a series of numbers and I want to find a formula for the number of consecutive values of at least a certain number.
Example:
<table width="1520" border="0" cellpadding="0" cellspacing="0"><col width="80" span="19"><tr height="20"> <td class="xl65" style="height: 15pt; width: 60pt;" width="80" align="right" height="20">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">6</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">2</td> <td class="xl65" style="width: 60pt;" width="80" align="right">3</td> <td class="xl65" style="width: 60pt;" width="80" align="right">2</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">7</td> <td class="xl65" style="width: 60pt;" width="80" align="right">3</td> <td class="xl65" style="width: 60pt;" width="80" align="right">0</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> </tr></table>
Gives us:
Max consecutive for at least 1 gives 10
Max consecutive for at least 2 gives 7
Max consecutive for at least 3 gives 3
Max consecutive for at least 4 gives 3
Max consecutive for at least 5 gives 2
Max consecutive for at least 6 gives 1
Max consecutive for at least 7 gives 1
Hope you understands my question and can help!
I want to find a way to fix this:
I have a series of numbers and I want to find a formula for the number of consecutive values of at least a certain number.
Example:
<table width="1520" border="0" cellpadding="0" cellspacing="0"><col width="80" span="19"><tr height="20"> <td class="xl65" style="height: 15pt; width: 60pt;" width="80" align="right" height="20">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">6</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">2</td> <td class="xl65" style="width: 60pt;" width="80" align="right">3</td> <td class="xl65" style="width: 60pt;" width="80" align="right">2</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">7</td> <td class="xl65" style="width: 60pt;" width="80" align="right">3</td> <td class="xl65" style="width: 60pt;" width="80" align="right">0</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">5</td> <td class="xl65" style="width: 60pt;" width="80" align="right">4</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> <td class="xl65" style="width: 60pt;" width="80" align="right">1</td> </tr></table>
Gives us:
Max consecutive for at least 1 gives 10
Max consecutive for at least 2 gives 7
Max consecutive for at least 3 gives 3
Max consecutive for at least 4 gives 3
Max consecutive for at least 5 gives 2
Max consecutive for at least 6 gives 1
Max consecutive for at least 7 gives 1
Hope you understands my question and can help!