Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I am using the M2 YTD measure and it simply generates zero in Total while single filtered rows are perfect.
If I embed M2 in a CALCULATE then Total will be an irrationally big number.
Thank you for your help in advance!
BR,
Peter
M1= sumx('fYFSP03T_BS 2',
IF( IFERROR(find(right(RELATED(dCustomer_API[RBCustomerID]),4),max('fYFSP03T_BS 2'[R_U_L_E_S])),0) <> 0,'fYFSP03T_BS 2'[Corrected_Value]))
M2 = sumx(filter(ALL(DimDate[Date_]),DimDate[Date_]<=max(DimDate[Date_]) && year(DimDate[Date_]) = YEAR(MAX((DimDate[Date_])))), M1 )
hi @plukacsi
Try to add a CALCULATE in M1 as below:
M1=CALCULATE( sumx('fYFSP03T_BS 2',
IF( IFERROR(find(right(RELATED(dCustomer_API[RBCustomerID]),4),max('fYFSP03T_BS 2'[R_U_L_E_S])),0) <> 0,'fYFSP03T_BS 2'[Corrected_Value])) )
If you still have the problem, please share your sample pbix file for us have a test.
Regards,
Lin
Hi,
What I have just realized that only P1 total is missing in M1 P2-P12 M1 is totally okey, but because of the 0 P1 YTDP2-P12 is wrong.
M1=CALCULATE( sumx('fYFSP03T_BS 2',
IF( IFERROR(find(right(RELATED(dCustomer_API[RBCustomerID]),4),max('fYFSP03T_BS 2'[R_U_L_E_S])),0) <> 0,'fYFSP03T_BS 2'[Value])) )
P.S.: with an other simple M1 SUM measure wo. any SUMX and filter I can see the missing element in the total line.
Thank you for your help!
BR,
Peter
Hi,
thank you, now I have a figure in total row, but unfortunately a disconnected and extreme big number.
This is a big AAS model, so Desktop version not really available.
Thank you for your further help in advance!
Peter
Try using datesytd, totalytd
example
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(('Date'[Date]),"3/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"3/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR(dateadd('Date'[Date],-1,Year)),"3/31"))
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
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin
Hi Amit,
Thank you, but all built-in YTD function brings mi zero in total row.
BR,
Peter
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
See if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
97 | |
95 | |
38 | |
36 |
User | Count |
---|---|
150 | |
124 | |
76 | |
74 | |
53 |