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
Anonymous
Not applicable

YTD function for categorical variable

Hi, 

I am trying to create an YTD for an count of categorical variable for each event type. The data is similar to this. Now I have to create a count of rating difference from 2021-2022. How do I proceed with that ?

I used this 

RATING_YTD = TOTALYTD(Count(Sheet0[Rating]),Sheet0[Response Date].[Date],Sheet0[Rating]="Promoters")
but it doesnot seem to work. Am I doing it correct ?

MaliniB_0-1654055693262.png

 

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

Hi @Anonymous,

 

You may try this solution.

1 Make some changes to your Measure

RATING_YTD = TOTALYTD(Count(Sheet0[rating]),Sheet0[response date].[Date])

 

2 Create a visual like this

vcazhengmsft_1-1654505408945.png

 

Also, attached the sample pbix file.

 

For more details about TotalYTD, you may take a look at Year to Date; TotalYTD part of this blog: Basics of Time Intelligence in DAX for Power BI; Year to Date, Quarter to Date, Month to Date - RADACAD

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

View solution in original post

2 REPLIES 2
v-cazheng-msft
Community Support
Community Support

Hi @Anonymous,

 

You may try this solution.

1 Make some changes to your Measure

RATING_YTD = TOTALYTD(Count(Sheet0[rating]),Sheet0[response date].[Date])

 

2 Create a visual like this

vcazhengmsft_1-1654505408945.png

 

Also, attached the sample pbix file.

 

For more details about TotalYTD, you may take a look at Year to Date; TotalYTD part of this blog: Basics of Time Intelligence in DAX for Power BI; Year to Date, Quarter to Date, Month to Date - RADACAD

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

ValtteriN
Super User
Super User

Hi,

Try something like this:


Data:

ValtteriN_1-1654066356945.png

 


Model:

ValtteriN_0-1654066327063.png

DAX:

ytd category = CALCULATE(COUNT('Category YTD'[Type]),DATESYTD('Calendar'[Date]))


End result:

ValtteriN_2-1654066602856.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.

Top Solution Authors