trend arrows

nparsons75

Well-known Member
Joined
Sep 23, 2013
Messages
1,254
Office Version
  1. 2016
Hi,

I have a table that contains data for a 12 month period. Month on month per cell I would like to display trend arrows showing the trend against the previous month.

For example, column A contains January, B February and so on. How can I show a trend arrow in B against the value in A. Then again in C for the value in B. Basically showing the trend against the previous month for all 12 months.

Thanks in advance,
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Perhaps this (or similar) with cell orientation moved through 90degees:-
Code:
=IF(B4>A4,"->","<-")
 
Upvote 0
How about something like this?


Excel 2010
ABCDEFGHIJKL
1Jan-17Feb-17Mar-17Apr-17May-17Jun-17Jul-17Aug-17Sep-17Oct-17Nov-17Dec-17
2123321234112
3???????????
Sheet1
Cell Formulas
RangeFormula
B3=IF(B2>A2,"⇧",IF(B2))


The question marks will appear as the arrows in the formulas.
 
Last edited:
Upvote 0
Hi, great thank you. We'll give them a go and feedback. Is it not possible to use conditional formatting?
 
Upvote 0
Hi, great thank you. We'll give them a go and feedback. Is it not possible to use conditional formatting?

It depends on what it is that you are looking to do.

If you want to change the fill or font color if they go up or down (or stay the same) then you can do this with Conditional Formatting.

However, if you are trying to put arrows in the cells through icon sets, I do not believe that you can use Conditional Formatting for this since icon sets cannot use relative references.

Edit: There might be a loophole by using INDIRECT. I will let you know if I find anything more on this.
 
Last edited:
Upvote 0
That would be brilliant, thank you. Im about to try the other options also.
 
Upvote 0
That would be brilliant, thank you. Im about to try the other options also.

The best that you can do through Conditional Formatting (in my opinion) would be to show icon sets directly below the numbers.

So in the example shown in post #3, you can create an icon set showing in row 3.

To do this, given the layout in post #3, put the formula =SIGN(B2-A2) in cell B3 and then drag the formula through cell L3.

This will give you 1 when the number increases, -1 when the number decreases, and 0 when the number stays the same.

Now highlight B3:L3 > Conditional Formatting > Icon Sets > 3 Triangles (assuming Excel 2007+)

Then with B3:L3 still highlighted, go to Conditional Formatting > Manage Rules > Edit Rule > Check the box labeled "Show Icon Only" > OK > OK

You can then center everything to make them look nice. Hope this will work for you.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,192
Members
449,072
Latest member
DW Draft

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