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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
ADSL
Post Prodigy
Post Prodigy

How to Calculate Total Sales for Specific Date

Hi BI Team,

 

As per business need we want to calculate the Total Sales from day 01 till day 25th of the month.

 

Could you please kindly advise the measure of this request.

 

Best Regards,

 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@ADSL the relationship between date table and order table is on the month column which is always showing the 1st day of the month, first you need to change that relationship and also update the measure as shown below

 

Total Sales Day 01 - 25  = 

 SUMX ( 
    VALUES ( 'Date'[MonthnYear] ),
    VAR __date = CALCULATE ( MAX ( 'Date'[Date] ) )
    VAR __startDate = EOMONTH ( __date, -1 ) + 1
    VAR __endDate = DATE ( YEAR ( __date ), MONTH ( __date ), 25 )
RETURN
    CALCULATE (
        SUM('Order'[Amount No VAT]),
        DATESBETWEEN ( 'Date'[Date], __startDate, __endDate )
    )
)

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

5 REPLIES 5
parry2k
Super User
Super User

@ADSL 👏

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

parry2k
Super User
Super User

@ADSL the relationship between date table and order table is on the month column which is always showing the 1st day of the month, first you need to change that relationship and also update the measure as shown below

 

Total Sales Day 01 - 25  = 

 SUMX ( 
    VALUES ( 'Date'[MonthnYear] ),
    VAR __date = CALCULATE ( MAX ( 'Date'[Date] ) )
    VAR __startDate = EOMONTH ( __date, -1 ) + 1
    VAR __endDate = DATE ( YEAR ( __date ), MONTH ( __date ), 25 )
RETURN
    CALCULATE (
        SUM('Order'[Amount No VAT]),
        DATESBETWEEN ( 'Date'[Date], __startDate, __endDate )
    )
)

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi @parry2k,

 

It's working correctly after follow your advised.

 

2022-09-29_00-29-45.jpg

Thank you for your helpful and quick respond!

 

Best Regards,

parry2k
Super User
Super User

@ADSL you can try something like this

 

Total Sales = 
VAR __date = MAX ( 'Calendar'[Date] )
VAR __startDate = EOMONTH ( __date, -1 ) + 1
VAR __endDate = DATE ( YEAR ( __date ), MONTH ( __date ), 25 )
RETURN
CALCULATE (
   SUM ( Table[Sales] ),
   DATESBETWEEN ( 'Calendar'[Date], __startDate, __endDate )
)

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi @parry2k,

 

Thank you for your feedback.

 

But after trying your measure, it seem not working. Please kindly assist to check the screenshot or access to file that I create - https://drive.google.com/file/d/1qi5o6KhV9KpqSQP07dr6xfFJlGnzcfPH/view?usp=sharing 

 

2022-09-28_21-52-43.jpg

 

2022-09-28_22-02-14.jpg

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.