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

DAX expression

Hello everyone

 

I have a data table with amounts of money and a date, and I'm struggling to write measures to separate one years amount from another using DAX.

 

For example (dates are in UK type)

 

Date        Amount

1/8/18      £100

1/9/18      £100

1/10/18    £100

1/11/18    £100

1/12/18    £100

1/1/19      £200

1/2/19      £200

1/3/19      £200

1/4/19      £200

 

I've tried using CALCULATE(SUM(

but Power BI is refusing to accept the filter as the year.

 

Can anyone point me in the right direction as to the correct DAX please?

 

My expected result from above would be 2018 = £500 and 2019 = £800, which I could display in the card visual.

 

Thanks in advance

 

Daniel

3 ACCEPTED SOLUTIONS
AlB
Super User
Super User

Hi @Anonymous 

You could use a calendar table and a slicer to select the year you want (probably the best option). Or you can just create measures

 

Measure =
VAR Year_ = 2018 // Change as required
RETURN
    CALCULATE (
        SUM ( Table1[Date] ),
        FILTER ( ALL ( Table1[Date] ), YEAR ( Table1[Date] ) = Year_ )
    )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

  

View solution in original post

ChrisMendoza
Resident Rockstar
Resident Rockstar

@Anonymous -

Something like:

2018 Results = 
CALCULATE (
    SUM ( TableName[Amount] ),
    YEAR ( TableName[Date] ) = 2018
)





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

jdbuchanan71
Super User
Super User

Hello @Anonymous 

Have you considered adding a date table to your model?  This will let you group your data by year / month / quarter etc.  You can create a date table by entering this DAX code in a "New table" measure.

Dates = 
VAR DateRange = CALENDARAUTO()

RETURN
ADDCOLUMNS(
    DateRange,
    "Year",YEAR ( [Date] ),
    "Month", FORMAT ( [Date], "mmmm" ),
    "MonthNum", MONTH ( [Date] ),
    "Month Year", FORMAT ( [Date], "mmm-yyyy"),
    "MonthYearNum", YEAR ( [Date] ) * 100 + MONTH ( [Date] ),
    "Quarter Year", "Q" & FORMAT ( [Date], "q-yyyy" ),
    "QtrYearNum", YEAR ( [Date] ) * 100 + VALUE ( FORMAT ( [Date], "q" ) )
)

Then you link the Date field from the Dates table to the Date field in your data table.  Once connected you can use all the fields in the date table as filters and groupings of your data.

View solution in original post

5 REPLIES 5
v-diye-msft
Community Support
Community Support

Hi @Anonymous 

 

If you've fixed the issue on your own please kindly share your solution. if the above posts help, please kindly mark it as a solution to help others find it more quickly.thanks!

 

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
Anonymous
Not applicable

Thanks everybody. All 3 solutions worked for me! 🙂

jdbuchanan71
Super User
Super User

Hello @Anonymous 

Have you considered adding a date table to your model?  This will let you group your data by year / month / quarter etc.  You can create a date table by entering this DAX code in a "New table" measure.

Dates = 
VAR DateRange = CALENDARAUTO()

RETURN
ADDCOLUMNS(
    DateRange,
    "Year",YEAR ( [Date] ),
    "Month", FORMAT ( [Date], "mmmm" ),
    "MonthNum", MONTH ( [Date] ),
    "Month Year", FORMAT ( [Date], "mmm-yyyy"),
    "MonthYearNum", YEAR ( [Date] ) * 100 + MONTH ( [Date] ),
    "Quarter Year", "Q" & FORMAT ( [Date], "q-yyyy" ),
    "QtrYearNum", YEAR ( [Date] ) * 100 + VALUE ( FORMAT ( [Date], "q" ) )
)

Then you link the Date field from the Dates table to the Date field in your data table.  Once connected you can use all the fields in the date table as filters and groupings of your data.

ChrisMendoza
Resident Rockstar
Resident Rockstar

@Anonymous -

Something like:

2018 Results = 
CALCULATE (
    SUM ( TableName[Amount] ),
    YEAR ( TableName[Date] ) = 2018
)





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



AlB
Super User
Super User

Hi @Anonymous 

You could use a calendar table and a slicer to select the year you want (probably the best option). Or you can just create measures

 

Measure =
VAR Year_ = 2018 // Change as required
RETURN
    CALCULATE (
        SUM ( Table1[Date] ),
        FILTER ( ALL ( Table1[Date] ), YEAR ( Table1[Date] ) = Year_ )
    )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

  

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.

Top Solution Authors