help me
132 Topicssingle measure select multiple value shows in one graph
how to show three different values in one graph Redution buckts Ex Rate New Materials scrap values 0.7 0.17 0.45 0.7 0.27 0.35 0.7 0.17 0.45 Valueof Month Values Dec 2020 120 -> starting inventory Jan 121 feb 111 March 121 --> end inventory Graph should like below any idea . thanks in advance816Views0likes2CommentsMDS Override Dax Query
Hi, One of my ex-colleague designed the below DAX query for the access override roles in the analysis service to provide additional access to the selected colleagues based on the superior they have access to. We recently realized that DAX is only returning two override values (MAX &MIN) and is skipping all the others leading to limiting the override access for a particular colleague to only 2 even if that colleague has permission to override more than two. DAX:(PATHCONTAINS( HR_Supervisory_Org[Path*], MAXX(FILTER(HR_Supervisory_Org,HR_Supervisory_Org[LoginId] = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MAXX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 1 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MAXX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 2 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MAXX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 3 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MINX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 1 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MINX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 2 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) || (PATHCONTAINS( HR_Supervisory_Org[Path*], MINX(FILTER(HR_Supervisory_Org,RELATED(Sup_Org_RLS_Override[Business Manager 3 Login Id]) = USERNAME()),HR_Supervisory_Org[Colleague ID]) ) ) I have tried distinct and rankx but it seems I'm not using it properly and hence is giving error. Please help me in getting the issue fixed. The goal is to get all the colleague ID whose access is permitted to the one who is logging in instead of getting just the highest colleague id and lowest colleague id which is happening now. Please let me know if I need to add more info.Solved715Views0likes1CommentHow to remove Scientific Notation
In my table data looks like Scientific Notation.please find the screen shot. i have used below measure for the graph Total Month = IF(SELECTEDVALUE('Order Table Total'[Sno])="6.Total Month Variation",CALCULATE(SUM('Master Data Base'[Value]),ALLSELECTED('Order Table Total'[Sno])), SUM('Master Data Base'[Value])) how to trun off scientif notation in my report . i am trying to Format i am getting Error. Looking for support.Solved8.2KViews0likes6CommentsCompare the value multiple column
trying to compare the multiple columns to find item available and item not avaialbe Itemcode Reference Bom Itemcode Bom Description 1011 FZ FZ TearTap 1022 GH GH Printed 1033 KL item not required - BOM 1044 VB Bundlepaer 1055 CB CB Case lable i am trying to compare if both reference bom and Itemcode bom values are same its return Item Available . If refernce bom and itemcode bom values are not match its return Item not available .' another condition if refence bom and itemcode bom values not match or blank same time description column if word contain item not required its return No issues. Expected output : Itemcode Reference Bom Itemcode Bom Description Status 1011 FZ FZ TearTap Item available 1022 GH GH Printed Item available 1033 KL item not required - BOM No issues 1044 VB Bundlepaer Item Not available 1055 CB CB Case lable Item available . Looking for support .thanks in advance .Solved1.3KViews0likes6CommentsLookup Function not return the value
I have the two table Global parameter and Remark2(local) . i am trying to get BOM value from Remark2(BOM) in Global parameter table using the below Lookup val-Remark 2 - BomText = //CALCULATE ( // FIRSTNONBLANK ( 'Remark2 (local)'[BOM Text (Parameter BOM)], 1 ), //FILTER ( ALL ( 'Remark2 (local)' ), 'Remark2 (local)'[Number] = 'Global Parameters'[Item Code] ) //) CALCULATE(SELECTEDVALUE('Remark2 (local)'[BOM Text (Parameter BOM)]),FILTER(ALLNOBLANKROW('Remark2 (local)'[ItemCode]),'Remark2 (local)'[ItemCode]=='Global Parameters'[Item Code]),ALL('Remark1 (local)')) But Lookup function dosn't work . i have attached power bi file reference Power BI File Global Parameter : ItemCode Rev Outer FA031375.12 11 Thenna FA031375.13 9 Thenna Remark2 (Local) ItemCode Rev BOMTEXT(Parameter BOM) FA031375.12 11 Thenna FA031375.13 9 Thenna Execpted output: ItemCode Rev Outer BOMTEXT FA031375.12 11 Thenna Thenna FA031375.13 9 Thenna Thenna Looking for support . thanks in advance .Solved771Views0likes2CommentsConditions True or False based on the two table
I have a two table one table Global Another one Local . Both table have common value Itemnumber , based on Global Table : Itemnumber Pack 101 102 103 NewHL 104 NewPack Local Table : Itemnumber BOMTEXT 101 102 CH 103 104 NewPack Based on the item i am trying to get true or false result Global Pack Local (BOM text) Output Result Blank Blank / Item code is missing in local input file TRUE Blank Value FALSE Value Blank / Item code is missing in local input file FALSE Value Value TRUE Expect Output: Itemnumber Pack BOMTEXT true/false 101 TRUE 102 CH FALSE 103 NewHL FALSE 104 NewPack NewPck TRUE Looking for support. thanks in advance..Solved1.2KViews0likes4CommentsSelected Week from Next 4 week value calculation
I have table name called Invenoty sheet . this table look like . i want filter it only Demand Attribute value . if Demand attribute value if date 15 March 2021 select from that date to Next week value Need to get it for 15 March 2021. I am Used below Measure Mesaure = CALCULATE(sum(Append1[Value]),FILTER(Append1,Append1[Attributes]="Demand"),DATESINPERIOD('Date'[Date],MAX('Date'[Date]),1,MONTH)) ( 4 week Consider as 1 week ) INPUT: DATE ATTRIBUTE value 15 March 2021 Demand 45 15 March 2021 DOI 25 22 March 2021 Demand 55 22 March 2021 DOI 35 29 March 2021 Demand 65 29 March 2021 DOI 85 05 April 2021 Demand 45 05 April 2021 DOI 85 12 April 2021 Demand 95 12 April 2021 DOI 65 19 April 2021 Demand 45 19 April 2021 DOI 35 26 April 2021 Demand 45 26 April 2021 DOI 65 Expected Output : DATE ATTRIBUTE value Selected week from Next 4 week 15 March 2021 Demand 15 120 => 15+25+35+45 22 March 2021 Demand 25 170 => 25+35+45+55 29 March 2021 Demand 35 190 => 35+45+55+65 05 April 2021 Demand 45 210 =>45+55+65+45 ------ ---- ---------- 31 December 2022 Demand 88 Looking for support .. thanks in advance .,Solved668Views0likes2Commentsthe calendar it is not start with January, how to make work
Date1 = VAR MinYear = YEAR ( MIN('Date'[Date] )) VAR MaxYear = YEAR ( MAX('Date'[Date] )) RETURN ADDCOLUMNS ( FILTER ( CALENDARAUTO( ), AND ( YEAR ( [Date] ) >= MinYear, YEAR ( [Date] ) <= MaxYear ) ), "Calendar Year", YEAR ( [Date] ), "Month Name", FORMAT ( [Date], "mmmm" ), "Month Number", MONTH ( [Date] ) )Solved652Views0likes2Commentslatest selected month measure values
Hello, I have a measure which includes a complicated dax function . and I do have a month slicer . Now when the user selects multiple months ranging from the month slicer I would like to show the latest month measure values on the visual . Any recommendation pleaseSolved550Views0likes1CommentSUMX does not calculate at pivot aggregate level?
Hi everyone, I am using the following formula, and I would like to calculate the ABS ERROR between the actuals and the forecast. However, as you can see the it is not calculating at the pivot level. Shouldn't SUMX calculate the result at the aggregation provided in the Matrix? Why is not working? Thanks a lot, RiccardoSolved2.1KViews0likes10Comments