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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
anil
Helper III
Helper III

YTD with month filter using Direct Query

Hi All,

       I am trying to create YTD sales at category level with Month filter using power bi direct query.

If we select month filter value"March" the expected result should be the YTD sum till March.

But in direct query mode, I am unable to use YTD functions. 

 I have tried using this calculated measure but it's not giving YTD result at the

YTD = VAR lastDay =
    MAX ( A2[ORDER_RECEIVED_DATE_NEW] )
VAR year =
    YEAR ( lastDay )
RETURN
    CALCULATE (
        SUM ( A2[Quantity] ),
        FILTER (
            ALL ( A2 ),
            YEAR ( A2[ORDER_RECEIVED_DATE_NEW]) = year
                && A2[ORDER_RECEIVED_DATE_NEW] <= lastDay
        )
    )

category level.

 

please help me with a solution.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi Anil

 

Can you please try using ALLEXCEPT instead of ALL since you are looking to see the data at the category level.

 

https://msdn.microsoft.com/en-us/query-bi/dax/allexcept-function-dax

 

Best regards.

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi Anil

 

Can you please try using ALLEXCEPT instead of ALL since you are looking to see the data at the category level.

 

https://msdn.microsoft.com/en-us/query-bi/dax/allexcept-function-dax

 

Best regards.

 

@Anonymous 

Thanks for the reply.

Previously I used allexcpet(), but it was not working. Now I tried again, able to see the expected result.

Anonymous
Not applicable

Cool, thanks for confirming.

Please mark my answer as accepted solution, will help others as well. 🙂

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.