How to work out general trend in a series of numbers (film rankings)

stefanaalten

Board Regular
Joined
Feb 1, 2011
Messages
71
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a list of film titles with position rankings. A simplified example is shown below. I would like to work out what the "general trend" (sorry to be vague) is for a given title's position rankings, i.e. whether a film generally "improves" (or "worsens") over time. Just to get an idea of which ones "stand the test of time". I thought this would be an easy thing to work out (so easy I could do it by myself! :LOL:) but I've still managed to get myself all muddled up and would be grateful for help from the community!

Points to clarify:
1) A title may have a position in some, all or no years.
2) A position is a number between 1-1000, with 1 being highest, 1000 being lowest. Position rankings below 1000 are omitted.

Book1
ABCDEFG
1TitlePos 2016Pos 2017Pos 2018Pos 2019Pos 2020Trend
2A1025352115
3B100130190
4C600599
5D200200130170
Sheet1


I've been dabbling with the SLOPE function but not getting very far with that. If at all possible I would like to keep the formula to a single column (column G in my example) and avoid the need to insert many additional "helper" columns (though can do this if necessary). Can anyone please help?

(I'm getting these rankings from theyshootpictures.com, an excellent film reference site.)

Many thanks!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
How about a linear trend?
Book1
ABCDEFG
1Title201620172018201920202021
2A102535211523
3B100130190320
4C600599597
5D200200130170135
Sheet8
Cell Formulas
RangeFormula
C1:F1C1=B1+1
G2:G5G2=FORECAST.LINEAR($G$1,B2:F2,$B$1:$F$1)
 
Upvote 0
Many thanks for that @Cubist , but it's not quite what I'm after (and I do realise I was rather vague with my initial question!) That tells me "what is the position of this film likely to be next year", but I'm really after something that tells, at a glance, whether a film has, over time, remained constant in its position, improved, or declined. So, taking title A in the above example, the number "23", taken by itself, does not show whether the film has remained constant/improved/declined.
 
Upvote 0
You could use the slope to estimate the trend:

Book1
ABCDEFGH
1TitlePos 2016Pos 2017Pos 2018Pos 2019Pos 2020TrendEst. Cur. Rating
2A10253521150.624.8
3B10013019045455
4C600599-1594
5D200200130170-1687
Sheet6
Cell Formulas
RangeFormula
G2:G5G2=SLOPE(B2:F2,MID(B$1:F$1,5,4)+0)
H2:H5H2=FORECAST(YEAR(TODAY()),B2:F2,MID(B$1:F$1,5,4)+0)


In this case, title A has a trend close to zero, so its position is pretty static. Title B has a large positive value, so it is getting a higher rating (or a worse position) over time. And with a significant negative value, title D seems to be getting "better" over time.
 
Upvote 0
Many thanks for that @Cubist , but it's not quite what I'm after (and I do realise I was rather vague with my initial question!) That tells me "what is the position of this film likely to be next year", but I'm really after something that tells, at a glance, whether a film has, over time, remained constant in its position, improved, or declined. So, taking title A in the above example, the number "23", taken by itself, does not show whether the film has remained constant/improved/declined.
You can look at the slope. A negative slope indicates an increase in position, and vice versa.
Book1
ABCDEFG
1Title20162017201820192020Trend
2A1025352115Decline
3B100130190Decline
4C600599Increase
5D200200130170Increase
Sheet8
Cell Formulas
RangeFormula
C1:F1C1=B1+1
G2:G5G2=LET(s,SLOPE(B2:F2,$B$1:$F$1),IF(s<0,"Increase",IF(s>0,"Decline","No Change")))
 
Upvote 0
Solution

Forum statistics

Threads
1,216,756
Messages
6,132,535
Members
449,734
Latest member
AlphaPro

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