multiple
4 TopicsCan anyone assist on this dax. i need last date's , distinct id counts of having zero average .
ID Dates Average 3 01-10-2022 0 1 01-10-2022 110 2 02-10-2022 74 4 01-10-2022 91 1 02-10-2022 100 2 01-10-2022 0 4 02-10-2022 0 1 04-10-2022 0 2 04-10-2022 0 3 04-10-2022 216 5 01-10-2022 0Solved1.4KViews0likes7CommentsDAX Measure Based on Group and Range
Hello, I am attempting to write a DAX expression to assist in assigning a 1-5 value based on the performance of a representative, with 1 being "Far from Met" and 5 being "Significantly Surpassed." There are three different groupings: Alpha, Bravo, and Charlie. For example: So what I am looking to accomplish is assigning a 1 to 5 value based on the groupings illustrated above in one visual. I thought of this: IF('sheet name [Group] = "Alpha" && 'sheet name[Range] <425, 5 and so on for 4, 3, 2, 1 and repeat for the other two groups, however it's not working the way I thought it would. Any assistance would be greatly appreciated - if you have any additional questions, please let me know. Thanks, Andrew893Views0likes4CommentsSearch In Different Order
I'm looking to have a search field that looks in a table where it searches the same words, but the words could be in a different order. In excel, it would be similar to the contains and contains filter instead of the exact filter. Example Description Field: Pen Blue Medium Bic In the search field if "blue pen" is entered I would like for this description to come up. It's only coming up if I type the words in the exact same order. Eg. "Pen blue", "blue medium" & "medium bic" Thanks in advance for your help! 🙂 Laurinda1.1KViews0likes2CommentsSUMX + FILTER + EARLIER...
Hi All, I'm attempting to calculate a sum of values in 1 table for each job title in a related table. I'm assuming I need to incorporate SUMX, FILTER, and EARLIER in some capacity, but I'm struggling a bit with the logic. 😕 There are 2 tables: tblActivity: UserID Report Count asmith ABC1 54 jdoe ABC1 2 cmyers CDE4 82 asmith CDE4 1 jdoe CDE4 5 cmyers DEF2 4 bjones DEF2 178 ejohnson DEF2 3 hhill DEF2 49 asmith DEF2 3 mjones DEF2 33 jdoe DEF2 9 pallen DEF2 77 mjones HIJ1 44 jdoe HIJ1 33 bjones JKL1 12 ejohnson JKL1 12 The "Count" column simply represents the # of times the listed UserID downloaded that particular Report. Each UserID falls into a specific job title which is defined in this related table: tblUsers: UserID Job Title asmith Specialist jdoe Supervisor cmyers Analyst bjones Sales Rep ejohnson Sales Rep hhill Sales Rep mjones Specialist pallen Supervisor There's a "Many-to-one" relationship between tblActivity[UserID] --> tblUsers[UserID] Thus, for each of the Reports in tblActivity (ABC1, CDE4, DEF2, etc.), I'm attempting to calculate the # of times that the report was downloaded for each respective job title (based upon that user's job title in tblUsers). In some cases, a given report may have only been downloaded by certain users (e.g.: report ABC1 was only downloaded by asmith and jdoe). So, using Report "DEF2" as an example, my expected values would be: -Analyst: 4 (cmyers) -Sales Rep: 230 (bjones 178 + ejohnson 3 + hhill 49) -Specialist = 36 (mjones 33 + asmith 3) -Supervisor = 86 (pallen 77 + jdoe 9) Any help / hints would be greatly appreciated - thank you! 😊Solved1.7KViews0likes2Comments