cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
SBIM
Helper I
Helper I

DAX Measure Showing All Records

I am trying to create a MTD measure by fiscal year so we can show sales by store and sales rep. My measure is 100% accurate for the total sales, but when I create a table with the date, store, and sales rep it lists all records, not just the ones from November 2022. All these fields are in one table so I am kind of confused why this is happening.

 

This is the measure (The MAX is added so it can be dynamic based on a date slider showing any month you want)

1 MTDSales = SUMX(FILTER(JobsWithMilestones, AND(JobsWithMilestones[ContractfiscalYear] = YEAR(MAX(JobsWithMilestones[ContractDate])),JobsWithMilestones[ContractfiscalMonthOfYear] = MONTH(MAX(JobsWithMilestones[ContractDate])))), JobsWithMilestones[GrossAmount])

 

SBIM_0-1669124172105.png

 

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

Hi @SBIM ,

Because the date fields that you add to the table visual is consecutive,.

For more details, you can read related document: TOTALMTD function (DAX) - DAX | Microsoft Learn , Total Month to Date(TOTALMTD) DAX function in Power Bi (powerbidocs.com)TOTALMTD – DAX Guide

If you only want to show current month, please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1669367757549.png

Date Table:

create with dax formula:

Date Table = CALENDAR(FIRSTDATE('Table'[Date]),LASTDATE('Table'[Date]))

vbinbinyumsft_1-1669367784608.png

2. create measure with below dax formula

Total MTD = TOTALMTD(SUM('Table'[Sale]),'Date Table'[Date])
Filter Month =
VAR cur_month =
    MONTH ( TODAY () )
VAR _m =
    MONTH ( SELECTEDVALUE ( 'Date Table'[Date] ) )
RETURN
    IF ( cur_month = _m, 1 )

3. add a table visual with fields and measure, add "Filter Month" to this visual as a filter

vbinbinyumsft_2-1669367990843.png

vbinbinyumsft_3-1669368007857.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
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

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @SBIM ,

Because the date fields that you add to the table visual is consecutive,.

For more details, you can read related document: TOTALMTD function (DAX) - DAX | Microsoft Learn , Total Month to Date(TOTALMTD) DAX function in Power Bi (powerbidocs.com)TOTALMTD – DAX Guide

If you only want to show current month, please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1669367757549.png

Date Table:

create with dax formula:

Date Table = CALENDAR(FIRSTDATE('Table'[Date]),LASTDATE('Table'[Date]))

vbinbinyumsft_1-1669367784608.png

2. create measure with below dax formula

Total MTD = TOTALMTD(SUM('Table'[Sale]),'Date Table'[Date])
Filter Month =
VAR cur_month =
    MONTH ( TODAY () )
VAR _m =
    MONTH ( SELECTEDVALUE ( 'Date Table'[Date] ) )
RETURN
    IF ( cur_month = _m, 1 )

3. add a table visual with fields and measure, add "Filter Month" to this visual as a filter

vbinbinyumsft_2-1669367990843.png

vbinbinyumsft_3-1669368007857.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thiago_Melo
Frequent Visitor

The ContractDate it's in the format of an valid date type? (Such as "DD/MM/YYYY" for example)

 

If it is, you can only bring the month (or day and month if you want) to the table, so you could filter the month easily (there's a possibility of create an current month filter also)

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors