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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
PowerBuddy1
Frequent Visitor

YTD LY, MTD, YTD Chart

Hi, 

 

How can i display PY YTD (Previous Year YTD) as ONE bar at the beginning with axis label as "PY YTD" and YTD_Yield which is current year YTD after Dec as one bar.

 

I managed to get one consolidated value of PY YTD as shown below.

 

Capture.JPG

 

@amitchandak @Samarth_18  @TheoC 

 

 

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

Hi @PowerBuddy1,

I'd like to suggest you write a measure formula with an if statement to check the current category and redirect the calculations to different expressions and replace the raw table field to use on the chart.

Using the SELECTEDVALUE function in DAX - SQLBI

Measure =
VAR currMonth =
    SELECTEDVALUE ( Table[Month] )
RETURN
    IF (
        currMonth = "Jan",
        'expression1',
        IF ( currMonth = "Feb", 'expression2', SUM ( Table[values] ) )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @PowerBuddy1,

I'd like to suggest you write a measure formula with an if statement to check the current category and redirect the calculations to different expressions and replace the raw table field to use on the chart.

Using the SELECTEDVALUE function in DAX - SQLBI

Measure =
VAR currMonth =
    SELECTEDVALUE ( Table[Month] )
RETURN
    IF (
        currMonth = "Jan",
        'expression1',
        IF ( currMonth = "Feb", 'expression2', SUM ( Table[values] ) )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@PowerBuddy1 , I doubt LYTD formula, can you share that

 

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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!

December 2024

A Year in Review - December 2024

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