@inventory @dax
7 TopicsList of values with filter, kindly help me!
Hi Team, Kindly help me for filter visual. I have the 'Data' column and categories columns. like below snapshot format. we required filter, If I select categories col of 'a' then "a" related all data shown like below snapshot. If select 'b' then "b" related of all data required. How to it in DAX with this? Note:- In power query it is possible, by splitting muliple cols and we will do it. but have performacne impact, kindly help me to it using DAX?Solved758Views0likes4CommentsDax measure query required of below shared expressions. kindly help me!
Hi Team, Good Afternoon! Kindly help me for DAX measure query of below 2 expressions. 1. Sum([ABC] * [DEF] / 100) 2. Sum((case when [AAA]>1 then [AAA] / 100 else [AAA] end) * [XYZ]) / Sum((case when [BBB]>1 then [BBB] / 100 else [BBB] end) * [XYZ]) I required measures due to need to call this final values in the card visual. please help me.Solved1.5KViews4likes5CommentsDAX query required for IF and IF Else condition of below case
Hi Team, I am new to PBI, help me with this case! IF type(col) = "AAA" & Date time(col) < 11AM then Pickup date = Date(col)-1 ELSE Pickup date = Date(col) IF type(col) = "BBB" then Pickup date = Date(col)–1 IF type(col) = "CCC" then Pickup date = Date(col) Value of "AAA" is having AAA_a, AAA_b, AAA_c, AAA_d, AAA_e ----AAA_n etc. So here we are calling the condition with "AAA". How do we calling "AAA" with one IF condition statement or any other. Same like value of "BBB" & Value of "CCC". Here date time(col) contains 24hrs, we required less than(< )upto 11AM then Pickup date = Date(col)-1, else Pickup date = Date(col). Here Date(col) is calculated column. So, kindly helpe me with the DAX query. below is the snapshot for your reference.Solved1.5KViews0likes10CommentsInventory Allocation to Work Order in DAX
Hello everyone, I am looking for a help to guide me with inventory availability check for work orders before making pick-list. I would like to see eligible work orders as per On Hand Qty. I have attached a snapshot for reference. I have been at it for a few days and I am unable to crack the logic. Would be grateful for any suggestions on how to implement the logic.....976Views0likes4CommentsDAX with Today (text data type), Last 7 dates(with text data type) and future dates(date data type)?
Hi Team, I am new to power bi. Kindly please help me below dax issue with date dropdown filter. Like, Today date with Text Data Type Last 7 days with Text Data Type and Future dates with Date Data Type. Kindly please he me on this case. I need to go all above cases in one dropdown filter. please help me best approch?Solved807Views0likes3CommentsSTOCK ON HAND TRACING & VALUE CALCULATION
Hi BI community, i've a data set approx. 450k lines from which i need to map the inventory history. I've used the following code for the measure and it displays accurate values. SOH = CALCULATE( SUM('STOCK MAPPING'[Trans QTY]), FILTER( ALL('STOCK MAPPING'[Order Date]), ('STOCK MAPPING'[Order Date])<=MAX('STOCK MAPPING'[Order Date]) ) ) However, for individual SKUs the stock values are only populated against the dates on which trasactions were registered. Secondly, i need to create a variable measure where stock on hand at each date between 2009 to present is multiplied with a standard unit cost (current one from a different table). Any suggestions please. Regards,Solved3.8KViews0likes3Comments