User Profile
Learn001
Regular Visitor
Joined 1 year ago
User Widgets
Contributions
Re: year to date plus 3 month future year sales target data
value i use as following dax for above report Volume YtD = CALCULATE(SUM(PROD_CM_AP25[VOLPROD]),YEAR(PROD_CM_AP25[DATE])) Volume LY = CALCULATE(SUM(PROD_CM_AP25[VOLPROD]),SAMEPERIODLASTYEAR(PROD_CM_AP25[DATE].[Date])) Sale Target YtD = VAR A = EDATE(MAX(PROD_CM_AP25[DATE]), 3) VAR B = DATE(YEAR(A), 4, 1) RETURN CALCULATE(SUM(PROD_CM_AP25[VOL SALES TARGET]), FILTER(ALL(PROD_CM_AP25[DATE]),PROD_CM_AP25[DATE] >= B && PROD_CM_AP25[DATE] <= A))1.3KViews0likes0Commentsyear to date plus 3 month future year sales target data
hello, i need help i have 3 column of data: date whole yearof 2023,2024 and some of data 2025, and another of actual sales and the target sales data, have the Year Slicer and a line and cluster column chart, have dax to show the actual sales data using: Sales YtD = calculate(sum('SALE'),year('DATE')) and how can i do for TARGET to show Year to Date data plus 3 month of future year? so in the chart i have data of a whole year to date 'TARGET' and 'SALE' data and see +3 month of 'TARGET' data? of course 'SALE' still blank for this future 3 month. like this if in excel:Solved1.5KViews0likes11Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.