multiple
8 TopicsDynamic filtering in reports published to SharePoint
I have a published report with several pages that I want to use in Sharepoint. On teh PowerBI desktop, I use a filter that applies to all pages to select a single customer for the presentation of the report to the Sharepoint page using the PowerBI WebPart. I want to create multiple SharePoint pages on the same SharePoint site, each with a different customer filterred. I also need to lock the filters once set so that users cannot change the customer being viewed on a SharePoint page. Is that possible?Solved2.9KViews0likes4CommentsAdding Parameter to second dataset
In Power BI Report Builder, I have two Datasets (DataSet1 and DataSet2). On my Table, I have two columns, one column comes from DataSet1 and another is an expression to do a Lookup to get a column from DataSet2. I want to add a Parameter to DataSet2, so that I can restrict the values in the Lookup, but I get an error "The parameter <ccon>@PARAM/ccon> is not referred in the query." Any ideas how to do this? thanks!Solved2.5KViews0likes4CommentsCan 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, Andrew890Views0likes4CommentsSearch 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.7KViews0likes2CommentsMultiple slicers multiple selection not summing to the correct value
Hi, I have 2 different slicers each having different products; say Slicer 1 has 3 products-A, B, C, and Slicer 2 has 3 products-D, E, F. When I am selecting All values from both slicers it's giving me a correct cumulative added value in the card. But if I select any 1 or more values (but not all), the card value gets adjusted only to one slicer and doesn't give value summing up the selected values of both the slicer. Can someone please help me with this? calculate('Metrics'[Revenue], filter('Product',Product'[Product X]in {"A","B","C","D","E","F"}),FILTER('Calender','Calendar'[Quarter] in {2020Q1,2020Q2})) . This is my table: A 10 B 20 C 5 D 5 E 25 F 35 This gives correct no. in the card 100 100 Slicer 1 Slicer 2 All All This gives wrong value, it should give 110, instead, it's giving only 10 10 Slicer 1 Slicer 2 A All674Views0likes0CommentsRepeat Visuals Per Employee in Report
Is there away to repeat the same visualizations per employee in Power BI report? As an example, when the end user selects a department from a slicer, the employee list would change, but each employee would have the same set of 5 or so visualizations. Has anyone accomplished this if so how?1.8KViews0likes1Comment