User Profile
alamhaz
Helper I
Joined 5 years ago
User Widgets
Contributions
Re: SumX is giving wrong value
i figure out the solution , i am posting it may be someone needs. i change the measure as follow simply add the hasonfilter with my measure, Avg Sale lost (product ) = IF(HASONEVALUE('Product Movement'[Date]),[Avg Sale Lost], BLANK()) then i use this measure Avg sale los f = if(HASONEVALUE('Product Movement'[Date])=TRUE(), [Avg Sale lost (product )],sumx(SUMMARIZE('Product Movement','Product Movement'[Product Name],'Product Movement'[Date]),[Avg Sale lost (product )])) here i am removing filter on total and subtotal. you can read this belwo artical for more details https://theexcelclub.com/learn-how-to-fix-totals-and-subtotals-in-dax-powerbi-and-power-pivot/2.9KViews0likes0CommentsRe: Dealing with Measure Totals
Hi In my case its works only when i choose some dates or product filter but when i dont use any filter its not showing total values check the screen shot. measure is Avg Sale lost (total ) = IF(HASONEFILTER('Product Movement'[Date]), IF([Total Qty Diff Avg] > 0, [Total Qty Diff Avg] * [Avg Selling Price (PV)]),SUMX(VALUES('Product Movement'[Date]), [Avg Sale Lost]) ) Please help90KViews0likes2Comments- 3KViews0likes0Comments
SumX is giving wrong value
Hi I am calcultaing sum of the measure but its giving me wrong value, all meaure gives wrong value on row lelvel but one measure give me correct value when i filter with product, What i am doing is multplying total qty diff avg with avg selling price , i am getting correct result in Avg sale lost but its not giving total measure is IF([Total Qty Diff Avg] >0, [Total Qty Diff Avg] * [Avg Selling Price (PV)] ,BLANK()) after comupting this i am computing with sumx measure is Avg Sale lost (product ) = SUMX(VALUES('Product Movement'[Date]), [Avg Sale Lost]) and Avg Sale lost (total ) = SUMX(VALUES('Product Movement'[Prod Key Value]), [Avg Sale Lost]) both measure is not giving correct result even i tried in calculted column still getting wrong value. Check the Screen shotSolved3KViews0likes3CommentsRe: adding up measures but giving wrong values
also i tried this measure Total FF Value = IF([test_3_FF] > 0 && [test_3_FF] < 500,SUMX(VALUES('InOutData(PAK)'[Payroll #]),[test_3_FF]),0) result is what i need but when i sum it up with sumx its giving me same values, see ss. (on time Col)697Views0likes0CommentsRe: adding up measures but giving wrong values
I am getting value form test_3_FF measure which is fine but now i want to add them on one filter that it shd add value after 13 pm to 10 pm , but value is wrong which is highlighted it should be 1 which is from test_3_FF measure, but when i use sumiftest measure its giving me wrong which is 14.714Views0likes1Commentadding up measures but giving wrong values
Hi good day I have one measure and i want to add it up using one condtion but its taking wrong values check below Screenshot. as highlighted i should be 1 but its showing 14, same behaviour is showing in others as well but some of them are fine, below is the measure ss Please if anyone can help me i tried but cannot reslove it.Solved815Views0likes4Comments
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.