Using excel to count number of revolutions

TOKYOJ1

New Member
Joined
Aug 14, 2017
Messages
30
Hi,

I work with planetary data and would like to seek help to use excel to count the number of revolutions each time 360 degrees is passed. The catch is there is retrograde motion causing the degrees to move backwards.

Example data (Degrees):
15
100
125
150
158
180
165
120
90
130
190
240
357
8 (1st revolution)
25
70
100
180
270
350
10 (2nd revolution)
30
80
100
90
77
55
54
52
40
60
120
190
210
340
5 (3rd revolution)
......

Thanks in advance
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I think we need a little more guidance from you on how to determine when this should happen.

We need to determine what is just a "rollback" and what is a revolution.
How would you recommend we do that? Is there some threshold of an acceptable "rollback" amount?
Or, is there some point at which it would not ever roll back (i.e. after 300 degrees)?

So we just need your help in determining acceptable logic as to when the revolution occurs by looking at the data.
 
Last edited:
Upvote 0
Hi,

Thanks for your reply.

We need to determine what is just a "rollback" and what is a revolution.
One revolution is counted each time 360 degrees is passed. If 360 degrees is passed 10 times it will be counted as 10 revolutions

How would you recommend we do that? Is there some threshold of an acceptable "rollback" amount?

90

240
357
8 (1st revolution)

IF rollback occurs at 8 degrees back to 357, 355, 348, 320, the rollback amount would exceed 300 and would not be acceptable.
My logic would be "if threshold>300 then no revolution counted when next 360 is passed"


Or, is there some point at which it would not ever roll back (i.e. after 300 degrees)?
<strike></strike>No, the rollback may occur anytime

Thanks for your help
 
Upvote 0
You didn't show the 3rd revolution passing 360 degrees. We can assume, but seeing the subsequent numbers helps more.
 
Upvote 0
OK, let's say that your data is in the range A1:A36.
Then enter this formula in cell B2 and copy down for all rows:
Code:
=IF(A1-A2>300,MAX(B$1:B1)+1,"")
 
Upvote 0
OK, let's say that your data is in the range A1:A36.
Then enter this formula in cell B2 and copy down for all rows:
Code:
=IF(A1-A2>300,MAX(B$1:B1)+1,"")

I tested this and it worked well.
Modified the formula a bit so I can keep track of the revolutions running down the column
B1=0
=IF(A1-A2>300,MAX(B$1:B1)+1,B1)

Thanks again!
 
Upvote 0

Forum statistics

Threads
1,213,497
Messages
6,113,998
Members
448,539
Latest member
alex78

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