Trend Arrows

Jackgeorge

New Member
Joined
Mar 29, 2016
Messages
4
Hi All
I'm creating a dashboard for reporting the sites performance and I would like to add a trend Arrow (Up, Down or Flat)
What I want to do is trend the previous collected data points performance and visually see if there is an improvement:

i:e Data points could be Months of the yr completed so far


What would be the calculation to trend the data and then how do I change the result to a symbol of an Up, Down Flat arrow

Many Thanks in advance
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
I would suggest using a nested IF statement and conditional formatting. The formula depends on how many data points you are using to define a trend?

In it's simplest form, for a month to month comparison the pseudocode would be
IF Cell1 < Cell 2 = -1
IF Cell1 = Cell 2 = 0
IF Cell1 > Cell 2 = 1

Then you can use CF for those 3 results on the cell. (Choosing up/down arrow symbols)

Regards
Caleeco
 
Upvote 0
Thank you for replying

Im not as good on excel as I should ...... so what calculation should go into cell G12, when the current months performance is in E12 and the previous months are stored on a separate Tab "Data1" cells E7 to P7

We now end up with 13 months of data (Jan to Dec 2016 & Jan 2017)

The goal for me is to see the trend over those (In this example 13 months) presented by an arrow in G12, colour coded even better (Green for Up, Red for Down & Amber for flat)


Thanks




I would suggest using a nested IF statement and conditional formatting. The formula depends on how many data points you are using to define a trend?

In it's simplest form, for a month to month comparison the pseudocode would be
IF Cell1 < Cell 2 = -1
IF Cell1 = Cell 2 = 0
IF Cell1 > Cell 2 = 1

Then you can use CF for those 3 results on the cell. (Choosing up/down arrow symbols)

Regards
Caleeco
 
Upvote 0

Forum statistics

Threads
1,214,947
Messages
6,122,413
Members
449,082
Latest member
tish101

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