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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
RanHo
Helper V
Helper V

POWERBI - YTD

 Good day guys!
      I want to create a YTD report wherein it can accumulates the given target and actual counts, here's my sample with tables and output i want to achieve. Thanks in advance.


TARGET TAB;E AND TRANSACTION TABLETARGET TAB;E AND TRANSACTION TABLEOUTPUT BASE ON GIVEN TABLESOUTPUT BASE ON GIVEN TABLES

3 REPLIES 3
RanHo
Helper V
Helper V

@amitchandak Sir can you clearly elaborate or can you provide a sample data or pbix? I'm a little bit confused. Thanks

amitchandak
Super User
Super User

@RanHo , You can create a date from month and Year and then you can use

with help from a date table

example

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

or have separate year and month (mm) in a table joined to this table on YYYYMM

 

YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Month] <= Max('Date'[Month]) ))

 

Check if needed, Distributing/Allocating the Yearly Target(Convert to Daily Target): Measure ( Daily/YTD): Magic of CLOSINGBALANCEYEAR With TOTALYTD/DATESYTD: https://community.powerbi.com/t5/Community-Blog/Power-BI-Distributing-Allocating-the-Yearly-Target-C...

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks Sir, I'll try it.

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 FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors