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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Varun511
Helper I
Helper I

YTD calculation based on Month name

HI,

 

Have Period  column which have Jan to Dec if i select  lets say March need to see all  my values till march 

 

dont have date column in my dataset in order to use time intelligence functions 

 

any  help highly appreciated 

 

 

1 ACCEPTED SOLUTION
lukiz84
Memorable Member
Memorable Member

Add a calculated column:

 

MonthNumber := MONTH("1. " & table[Period])

 

Then use the measure:

 

SumOfValuesYTD = 
   CALCULATE(
      SUM(table[Values]), 
      table[MonthNumber] <= SELECTEDVALUE(table[MonthNumber])
  )

View solution in original post

1 REPLY 1
lukiz84
Memorable Member
Memorable Member

Add a calculated column:

 

MonthNumber := MONTH("1. " & table[Period])

 

Then use the measure:

 

SumOfValuesYTD = 
   CALCULATE(
      SUM(table[Values]), 
      table[MonthNumber] <= SELECTEDVALUE(table[MonthNumber])
  )

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.