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
agd50
Helper V
Helper V

Dax Assistance - YTD unless Q1 then previous Year YTD

how would you do calculation for YTD, unless it's Q1 of a new year then give the total YTD of last year.

How would that look?

TIA

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

Hi @agd50 ,

Here some steps that I want to share, you can check them if they suitable for your requirement.

Here is my test data:

vheqmsft_0-1704938933353.png

1.Create a measure

YTD_Conditional = 
VAR CurrentQuarter = QUARTER(TODAY())
VAR CurrentYear = YEAR(TODAY())
RETURN
IF(
    CurrentQuarter = 1,
    CALCULATE(
        SUM('Table'[Amount]),
        FILTER(
            ALL('Table'),
            YEAR('Table'[Date]) = CurrentYear - 1
        )
    ),
    TOTALYTD(
        SUM('Table'[Amount]),
        'Table'[Date]
    )
)

2.Final output
Please note that today() is 2024/01/11

vheqmsft_1-1704939200163.png

 

Best regards

Albert He

 

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-heq-msft
Community Support
Community Support

Hi @agd50 ,

Here some steps that I want to share, you can check them if they suitable for your requirement.

Here is my test data:

vheqmsft_0-1704938933353.png

1.Create a measure

YTD_Conditional = 
VAR CurrentQuarter = QUARTER(TODAY())
VAR CurrentYear = YEAR(TODAY())
RETURN
IF(
    CurrentQuarter = 1,
    CALCULATE(
        SUM('Table'[Amount]),
        FILTER(
            ALL('Table'),
            YEAR('Table'[Date]) = CurrentYear - 1
        )
    ),
    TOTALYTD(
        SUM('Table'[Amount]),
        'Table'[Date]
    )
)

2.Final output
Please note that today() is 2024/01/11

vheqmsft_1-1704939200163.png

 

Best regards

Albert He

 

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

gadielsolis
Super User
Super User

Hello,

 

Please try the following DAX:

 
        IF(QUARTER(SELECTEDVALUE('Table'[Date]))=1,
        CALCULATE(SUM('Table'[Amount]),PREVIOUSYEAR('Table'[Date])),
        CALCULATE(SUM('Table'[Amount]),DATESYTD('Table'[Date])))

if this works please mark this message as solution, thank you.

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.