Formula help

Scrumpywill

New Member
Joined
Jul 28, 2018
Messages
23
Hello,

Could anyone please help, I have last years sales figures month by month and this years sales figures I would like a formula to compare sales percent increase or decreases per month and add a minus highlighting the percentage decrease

Many Thanks for your help and advice

Cheers
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hello :)
Data from a1 to e13 is this
DateSalesDateSales% Profit
Apr-175000Apr-18900080
May-174000May-183000-25
Jun-171000Jun-186000500
Jul-175000Jul-184000-20
Aug-172000Aug-185000150
Sep-171000Sep-183000200
Oct-175000Oct-182000-60
Nov-172000Nov-186000200
Dec-171000Dec-189000800
Jan-184000Jan-191000-75
Feb-183000Feb-197000133.3333
Mar-185000Mar-193000-40

<colgroup><col><col><col><col span="2"></colgroup><tbody>
</tbody>
in e2 use this formula n then copy down till e13
Code:
=D2*100/B2-100
 
Last edited:
Upvote 0
That’s cool, how would I format the percentage cell in e so it’s either 1 to 100 as an increase or -1 to -100 for a decrease

Currently using =(d2-d2)/abs(d2)

What do you think

Thanks again
 
Upvote 0
Column E is already showing percentage :confused:
Sorry I am not able to understand your question :(
U want to add % sign in column E ? :confused:
 
Upvote 0
ok finally i understood the problem :)
u want the profit and loss % only from 0 to 100
For example if data is like this, starting from a1 till h13
DateSalesDateSales% Profit% between 0 to 100
Apr-175000Apr-18-6000-220-1.980000792Ending point ( means 100 %)6566.666667
May-174000May-183000-25-0.22500009Starting point ( means 0 %)-4544.44
Jun-171000Jun-1860005004.5000018Range11111.10667
Jul-173000Jul-182000006566.66666759.10002364
Aug-172000Aug-1850001501.35000054
Sep-171000Sep-1830002001.80000072
Oct-175000Oct-18-222222-4544.44-40.89997636
Nov-172000Nov-1860002001.80000072
Dec-171000Dec-1890008007.20000288
Jan-184000Jan-191000-75-0.67500027
Feb-183000Feb-197000133.33333331.20000048
Mar-185000Mar-193000-40-0.360000144

<tbody>
</tbody>

in e2 enter formula n drag down till e13
Code:
=D2*100/B2-100
in h2 enter formula
Code:
=MAX(E2:E13)
in h3 enter formula
Code:
=MIN(E2:E13)
in h4 enter formula
Code:
=H2-(H3)
in f2 enter formula n drag down till f13
Code:
=E2*100/$H$4
 
Last edited:
Upvote 0
Dear friend Scrumpywill,
the formula in f2 is wrong :(
for this data its giving wrong results :(
Jul-173000Jul-182000006566.66666759.10002364

<tbody>
</tbody>
it must be 100 % but its giving 59.1 % :(
 
Upvote 0
ok finally i figured out :biggrin:
in f2 use this formula n drag till f13 :biggrin:
Code:
=((E2-$H$3)*100)/$H$4
 
Upvote 0
I am getting 98.87 as a result with the above formula.

Date Sales 2017DateSales 2018Profit/Loss (in values)Profit/Loss (in %)
Apr-175000Apr-189000801.2045169396566.7
May-174000May-183000-25-0.376411543-75
Jun-171000Jun-1860005007.5282308666641.7
Jul-173000Jul-182000006566.66666798.87076537
Aug-172000Aug-1850001502.25846926
Sep-171000Sep-1830002003.011292346
Oct-175000Oct-182000-60-0.903387704
Nov-172000Nov-1860002003.011292346
Dec-171000Dec-18900080012.04516939
Jan-184000Jan-191000-75-1.12923463
Feb-183000Feb-197000133.33333332.007528231
Mar-185000Mar-193000-40-0.602258469

<colgroup><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,742
Members
448,989
Latest member
mariah3

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