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
Joshua_
Helper I
Helper I

Using the TOTALMTD function but only on business days

Hi guys,


I am trying to create a measure that allows me to accumulate the sales for the month, so I am using the TOTALMTD function, this works correctly on the filtered month (September).

I also want to get the previous month (August), so I add the filter DATEADD(CALENDARIO[Date],-1,month) , however the value is repeated when it is NOT a weekday in August but it is a weekday in September .

 

I have a calendar table with business days and related to the sales table through dates.

 

Example:

 

 

Example.png

 

 

expectation:

Example_2.png

 

My measures:

 

September = SUM(FCT_VENTAS[MONTO_K]),
 
August = 
CALCULATE(
    SUM(FCT_VENTAS[MONTO_K]),
    DATEADD(CALENDARIO[Date],-1,month)
)
 

TOTALMTD (sep) =

TOTALMTD(
        SUM(FCT_VENTAS[MONTO_K]),
        CALENDARIO[Date]
    )
 
TOTALMTD (ago) =
TOTALMTD(
    SUM(FCT_VENTAS[MONTO_K]),
    DATEADD(CALENDARIO[Date],-1,month)  
)
 
 
thank a lot!
2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @Joshua_ 

Thanks for reaching out to us.

Could you share a sample .pbix file? thanks.

 

 

Best Regards,

Community Support Team _Tang

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

Greg_Deckler
Super User
Super User

@Joshua_ You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000

Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...


@ 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...

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