Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

This week in Dax

Hi,

 

I am needing to to do a caulate measure to find out this weeks amount and last weeks amount.

 

Would it be something like

 

if(calender.day = Tuesday(calculate(calculate,sum(value),calenderdate-1),calenderdate-1)

 

What would be the best way to acheive this?

 

Thanks

 

Chris

2 ACCEPTED SOLUTIONS

I created the following two enter data queries:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("Vc7BCQAhDEXBXjwvxPysxq1F7L8NQVjwHec2c5Y076bqWdZzlNCAvluqkEOCAnqhBuEiXISLcAlc4roMA/7X2g==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type date}})
in
    #"Changed Type"

That one is called Calendar.

 

The next one is called Values:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("Rc/BDYAgEAXRXjibwF/QhVoI/behUWe5vtPMnMmzrmxFno6ktI5XHDGkIxUZSPvFCnIiQi7EEEcq0pGGDOSMwgLtaKotqkW2RbbotugW4TXCRXmNcn3pPW/xX+JFT/q6AQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Date = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type date}, {"Value", Int64.Type}})
in
    #"Changed Type"

Related the tables on "Date" column.

 

Created the following calculated colunm in both tables:

 

Weeknum = WEEKNUM([Date])

Created the following Measure:

MyTotal = VAR myMax = MAX('Calendar'[Weeknum]) RETURN CALCULATE(SUM([Value]),ALLEXCEPT('Values','Values'[Weeknum]),'Values'[Weeknum]=myMax)

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

To make it honor the slicer selection, add that slicer column to the ALLEXCEPT clause.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

11 REPLIES 11

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.