cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
GillyGils
Frequent Visitor

LAG Conversion from MDX to DAX

Hi All,

I've the following MDX formula i'm trying to convert to DAX:

([Time Dimension].[Date].CurrentMember.lag(1), [Measures].[Total Available])

 

I've been trying to adjust the code below so I can retrieve the previous months 'Total Available' value but i'm only seem to be just getting the one singular previous month value:

PrevMonth = CALCULATE(
[Total Available],
ALLEXCEPT(TEST_TABLE,TEST_TABLE[DATE]),
DATEADD([DATE],-1,MONTH)
)

GillyGils_0-1665499799891.png

Any pointers would be appreciated.

Cheers

1 ACCEPTED SOLUTION

Hi @GillyGils ,

If there are only 'End of Month Dates' in your fact table. Please have a try.

Create a measure.

Measure1 = 
VAR _date =
MAX ( 'Table'[date] )
VAR _pre_date =
EOMONTH ( _date,-1)
VAR _value =
CALCULATE (
[total available],
FILTER ( ALL ( 'Table'), 'Table'[date] = _pre_date )
)
RETURN
_value

vpollymsft_0-1665624384281.png

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
GillyGils
Frequent Visitor

Hi Polly,

The code you provided is working for me as expected. I had use to EOMONTH, as I only have 'End of Month Dates' in my fact table:

 

Measure =
VAR _date =
MAX ( 'Table'[date] )
VAR _pre_date =
EOMONTH ( _date, -1 )
VAR _value =
CALCULATE (
[total available],
FILTER ( ALL ( 'Table'[date], 'Table'[total] ), 'Table'[date] = _pre_date )
)
RETURN
_value

 

GillyGils_0-1665592005513.png

One quick additonal question, when I drag in a Date Hierarchy of Time Dimension, the values are then empty:

GillyGils_1-1665592093779.png

Do I add another FILTER conidition to the DAX query?

 

Thanks

 

Hi @GillyGils ,

If there are only 'End of Month Dates' in your fact table. Please have a try.

Create a measure.

Measure1 = 
VAR _date =
MAX ( 'Table'[date] )
VAR _pre_date =
EOMONTH ( _date,-1)
VAR _value =
CALCULATE (
[total available],
FILTER ( ALL ( 'Table'), 'Table'[date] = _pre_date )
)
RETURN
_value

vpollymsft_0-1665624384281.png

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you Polly. This works perfectly.

Still getting a hang of the DAX syntax and this is helping me understand it more.

 

Thank you.

v-rongtiep-msft
Community Support
Community Support

Hi @GillyGils ,

I have created a simple sample, please refer to it to see if it helps you.

Create a measure.

Measure =
VAR _date =
    MAX ( 'Table'[date] )
VAR _pre_date =
    EDATE ( _date, -1 )
VAR _value =
    CALCULATE (
        [total available],
        FILTER ( ALL ( 'Table'[date], 'Table'[total] ), 'Table'[date] = _pre_date )
    )
RETURN
    _value

 

vpollymsft_0-1665542703447.png

If I have misunderstood your meaning, please provide more details with your desired output and pbix file without  priavcy information.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors