Measure to partially allocate monthly value

ilovasen

New Member
Joined
Jun 10, 2013
Messages
16
Hi

Is there an easy way to make a measure that allocates 50% of the Feb value in the table below into Jan and keep the remainder of Feb in Feb (the remaining months are not to be altered)?

Brgds,
Inge

Month - Value
Jan - 0
Feb - 4
Mar - 3
Apr - 1
May - 2
Jun - 2
Jul - 2
Aug - 3
Sep - 2
Oct - 3
Nov - 1
Dec - 1
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
in the cell that hold the 0 next to jan
put = then press the down arrow, then /2

that will make the formula divide feb by 2 and wont touch any other cell.
 
Upvote 0
Maybe something like this?!

Code:
=IF(HASONEVALUE(Table[Month], 
           IF(VALUES(Table[Month]) = "Jan", 
                    [Measure] + CALCULATE([Measure], Calendar[Month] = "Feb") / 2,
                    [Measure]
           )
     )
 
Upvote 0
Thanks to dermie_72 and scottsen for responses. Really great to see that you have solved this for me during my vacation.
It is really inspiring to see that there are solutions to just about all problems.
With great appreciation, Inge
 
Upvote 0

Forum statistics

Threads
1,224,027
Messages
6,175,992
Members
452,694
Latest member
SaruwatariKaito

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