DAX function for percentage change

Paffius

New Member
Joined
Apr 5, 2018
Messages
11
HI,

Imagine I want to create a formula that gives me the percentage change between to specific dates, and I want to do it within the powerpivot contexto (with DAX functions).

For example:(just for the sake of the example, these numbers are false)

A table with all the prices of Apple's stock during the year of 2008 and 2009.

APPL stock price was of $73.21 on August 3rd 2008 and a bit down in the same table it is quoting at $45.6 on November 15th 2009.

2 questions:

1)How to create a formula that gives me the percentage change between that specific period?

2) Because i want to analyze several "specific periods" over several years, I wanted to give a specific name to each of these periods. For example, I would like to cal the above mentioned period as "Financial Crisis 2008", so I can later use it as a filter used in a Pivot table. How to create these names for specific periods?

Thank you
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
DATESADD shifts dates in the current context by a fixed amount. e.g.

Code:
CALCULATE (
    [ValueMeasure],
    DATEADD(DateTime[DateKey],-1,year)
)

would return the measure value with the dates moved back by 1 year.

If you want to go back to a specific date then.

Code:
CALCULATE (
    [ValueMeasure],
    Dates[Date] = "1/1/2015"
)

Would return the value at a specific date.

To be able to select between options, look up "disconnected slicers".
 
Upvote 0
But, can I make a formula that gives me a period between two specific dates? Like From January 1st 2008 to March 11th 2008?

And, as a side question, can i use this period as a filter in a slicer?
 
Upvote 0
Can't you use LOOKUPVALUE to get the values for the 2 dates and then calculate the percentage difference?
 
Upvote 0
https://www.sqlbi.com/articles/alternative-use-of-firstnonblank-and-lastnonblank/

Look at the second set of DAX code here. Replicate, but with whatever you are trying to calculate in place of SUM <code class="dax parenthesis">(</code> <code class="dax plain">Inventory[UnitsBalance] </code><code class="dax parenthesis">)</code>.

Do the same but replace LASTNONBLANK with FIRSTNONBLANK.

Create measure that divides these two measures and this will now be the percentage difference between the value on the first and last date in your current date context. Add a date slicer and you should be good to go. Would need to understand your exact data structure to help further.
 
Upvote 0
https://www.sqlbi.com/articles/alternative-use-of-firstnonblank-and-lastnonblank/

Look at the second set of DAX code here. Replicate, but with whatever you are trying to calculate in place of SUM <code class="dax parenthesis">(</code> <code class="dax plain">Inventory[UnitsBalance] </code><code class="dax parenthesis">)</code>.

Do the same but replace LASTNONBLANK with FIRSTNONBLANK.

Create measure that divides these two measures and this will now be the percentage difference between the value on the first and last date in your current date context. Add a date slicer and you should be good to go. Would need to understand your exact data structure to help further.

Thank you so much for your help.
My date stucture would be as I said above, between two specific dates each one with diferente stock prices.
 
Upvote 0
Code:
FirstValue = 
CALCULATE (
    SELECTEDVALUE ( SourceData[Price] ),
    FIRSTNONBLANK ( 
        SourceData[Date],
        CALCULATE ( SELECTEDVALUE ( SourceData[Price] ) )
    )
)

Code:
LastValue = 
CALCULATE (
    SELECTEDVALUE ( SourceData[Price] ),
    LASTNONBLANK ( 
        SourceData[Date],
        CALCULATE ( SELECTEDVALUE ( SourceData[Price] ) )
    )
)

Code:
ChangeInValue = 
DIVIDE (
    [LastValue],
    [FirstValue]
) - 1

Edit: Then add a slicer on your date column
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,986
Members
448,538
Latest member
alex78

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