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
thampton
Helper III
Helper III

Help writing DAX measure

I have a table with the format below . I need to be able to create a measure that calculates the sum of the values based on the corresponding date (month to date ONLY). For instance, today's value would be 14 and tomorrow's would be 214.

 

Thank you for the help

 

Date                Value

1-31                 200

2-1                   2

2-2                   1

2-3                   2

2-4                   1

2-5                   2

2-6                   1

2-7                   2

2-8                   3

2-9                   200

 

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@thampton,

 

You may try DAX function TOTALMTD, create a measure and use DAX formula below:

Result =
TOTALMTD ( SUM ( Table[Value] ), Table[Date] )

Community Support Team _ Jimmy Tao

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

7 REPLIES 7
Anonymous
Not applicable

Hi Tampton,

 

First you need to have a date column with DD/MM/YYYY, and use DATESMTD function to get desired results.

 

Regards,

Pavan Vanguri.

v-yuta-msft
Community Support
Community Support

@thampton,

 

You may try DAX function TOTALMTD, create a measure and use DAX formula below:

Result =
TOTALMTD ( SUM ( Table[Value] ), Table[Date] )

Community Support Team _ Jimmy Tao

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

Anonymous
Not applicable

hello @thampton,

need a lot more explaination. maybe some pictures. not really sure what your asking

 

best regards, 

Collin

@Anonymous

 

Today is 2-8 :  When i write the measure i want it to calculate the sum of the values next to the dates from 2-1 to 2-8 as shown above, but tomorrow, it should sum the values from 2-1 to 2-9, etc.

Anonymous
Not applicable

ok, i see now, and do  you want it to work with real time? or simply add the days before the date selected?? 

@Anonymous Yes, updating real time would be perfect. I dont plan on using slicer to control date. 

Anonymous
Not applicable

I am not that strong with date formating and code, sorry on that respect , 

but I would suggest looking through this website here that has all the dax commands that can be used in power BI, spesificaly heres a link to the date and time section

 

https://docs.microsoft.com/en-us/dax/date-and-time-functions-dax

 

sorry I could not be of more help.

 

best regards,

Collin

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.