unique value
5 TopicsDAX: FILTER and CONCATENATE UNIQUE values
I am trying to FILTER/LOOKUPVALUE and CONCATENATE the relevant UNIQUE values but right now, I am unable to get it to work. I can only do it without the values being UNIQUE. My current DAX formula: CONCATENATEX ( FILTER ( ALL ( Table2 ), Table2[Column1] = Table1[Column1] ), Table2[Column2], ", " ) The output from here goes like: Value1, Value2, Value2 My desired output is: (without any of the values being duplicated) Value1, Value2Solved9.9KViews0likes6Commentscumulative total with unique values
Hi guys Here's the data set As you can see the last column is unique value. I would like basically to have a cumulative sum by month (1st column) of this Payout_Monthly column Cumulative sum (Jan/Feb) = 1412,14+1412,14 = 2824 (YTD FEB) any ideas ThanksSolved519Views0likes1CommentCalculate the growth in unique objects by month
Hi, I've been looking around and have found lots of examples of calculating the number of unique values occuring per year or per month, for example for calculating the number of unique website visitors per month. But what I need to do it calculate the number of truly new unique values each month, so it's a calculation of growth not occurance. For example: MonthYear Company Name Feb-20 Company A Feb-20 Company B Mar-20 Company A Mar-20 Company C Would be displayed as: MonthYear Growth Feb-20 2 Mar-20 1 Any help?859Views0likes1CommentDistinct values of a column with filttering by another column
Hi all, I'm new to Power BI and DAX, so thanks in advance for helping. I have a table named RUM: email date [email protected] 2020-08-26 [email protected] 2020-08-27 [email protected] 2020-08-27 [email protected] 2020-08-27 [email protected] 2020-10-10 [email protected] 2020-10-10 [email protected] 2020-01-01 I need to get number of distinct dates for each email address while at same time filttering some of emails. From the table above result should be: email unique dates [email protected] 2 [email protected] 1 I have following DAX but I'm not totally sure if it gives the right kind of result. unique dates = CALCULATE( DISTINCTCOUNT(RUM[date]), FILTER( RUM, RUM[email] <> "[email protected]" && RUM[email] <> "[email protected]" ) ) I know there are multiple ways to do this and would prefer the simplest. Any help and comments will be highly appreciated.Solved1.1KViews0likes2CommentsUnique Values based on Different Filters
Hi All, I am struggling to find the out the unique values based on the different filters. Here below is my sample data table and I want to find out the Associate name based on the highest spend by Division By Subcategory. For below table the expected one answer would be like below. I want the same figures for from the data Expected Result: I want all details Associate Name Sub Category Division C1 Group Road A1 Labour Utilities A1 Waste Construction Data Table Sub Category Division Associate Name Total Spend Labour Utilities A1 8 Labour Utilities B1 15 Labour Utilities C1 12 Labour Utilities D2 9 Labour Utilities A1 45 Hardware Engineering C1 31 Hardware Engineering D2 39 Hardware Engineering A1 42 Waste Engineering C1 2 Waste Construction D2 13 Waste Construction A1 28 Waste Construction A4 15 Work Construction A5 43 Work Infrastructure A1 8 Work Infrastructure C1 48 Work Infrastructure D2 21 Group Infrastructure A1 37 Group Road A1 19 Group Road C1 45 Group Road D2 19 Note: I am using direct query as data from source system. Please help me.735Views0likes2Comments