filtering
47 TopicsCalendar Visual by MAQ Software
Hello, Anybody here uses the calendar visual by MAQ Software? I have another visual which is a table that displays the details of the event. When I click the date on the calendar, it is not filtering my table. Is there a configuration I need to do to make this work? It will be better if this calendar can filter other visuals.18KViews0likes12CommentsHow to filter a table column with the selection on Other Table Column
Hi, In a tutorial we have seen the following report : In the report if Customer Name e.g. Adams Blake is selected the matrix shows the Brands which were purchased by customer along with sales amount. However, in the second slicer we could not see the product names which were purchased by Adams. As we know that a filter from Customer easily reaches to Sales ( for one to many relationship) but from Sales the same is not propagated to Product because of Many to One relationship and following is the screen shot of data model: In the tutorial we have seen that the relationship between Sales and Product was made Bidirectional and after that we achieved the desired report i.e. we can see the product names along with Brands when a specific customer is selected and following is the screen shot of the same: However it is advised that the bidirectional relationship should not be activated for the entire data model as the same can create many complications and unexpected results. Now the question is what will be the formula based solution to achieve the aforesaid situation where we can see Product names along with brands when a specific customer is selected. The same has not been told in tutorial but in practical scenario we can face such setuation and this will be very helpful for us if we get a code based solution of the same. Regards, Somnath591Views0likes3CommentsShow Category only Contains Multiple Selected Subcategory
I have a Data Set like this in PowerBI- Category Total Value Sub_Category AB 100 A AB 100 B BC 140 B BC 140 C CX 90 C CX 90 X AX 40 A AX 40 A ABX 200 A ABX 200 B ABX 200 X I want to use a slicer like this- if I multi select A and B in Slicer It will show only the category which has only A and B present (Category AB,ABX from my example). How can I do it?Solved1.4KViews0likes4CommentsMass Filter Upload
Hi all. I have a cohort of users who use a report I built that contains milliosn of rows of data. This data is based on transactions and accounts. When using Tableau they have been able to copy and paste a list of transactiosn into the transaction filter with no issues. i can't seem to be able to mirro this action on power bi without havign to create excel sharepoints etc--this is not a good use of their time as they need to act quickly when provided with a list of transactions. Has anyone found a way to do this with Power BI? Thanks GregSolved1.6KViews0likes4CommentsFiltering and slicing either a multivalued column or multiple columns, a different approach!
Recently, I ran into a case where the customer required a filter on a multivalued column. However, he wanted to be able to slice based on a single value rather than the combinations of values. The solution we implemented was leveraging Power Query rather than DAX and enabled the customer to slice the data based on any occurrence in the multivalued column. This approach also makes it possible to filter in multiple columns using a single slicer!6.8KViews4likes1Commentstatic grand total in matrix when filtered
Hi, I have a matrix with different countries as rows and Value (USD) as values. If I filter on a country, I want to keep the grand total unchanged. So in this case, if I filter on Zambia, I want it to show 103.55 for Zambia and 287,524.39 for Total. Is it possible?Solved1.5KViews0likes4CommentsSlicer for cumulative slicing
Hi Everyone, I have a dilemma . . . Is Power BI capable of cumulative slicing. For example, if I have a slicer for running total, and I select $200, I would want to see Items A, B and C instead of just Item C. Item Value Running Total Bands A $50 $50 <$50 B $100 $150 >$50 and <=$150 C $50 $200 >$150 and <=$200 D $150 $350 >$200 and <=$350 E $50 $400 >$350 and <=$400Solved1.2KViews0likes4CommentsFilter on table with measure not working
Hi, I have two tables Tab1 and Tab2 both containing one column of integer from 1 to 20 000. Goal : user select a first value (Whole Number) from Tab1[col1] with a slicer and then I want an other slicer where the user can select only values between 1 and the selected value in Tab1. I tried to get the selected value thanks to SELECTEDVALUE(Tab1), that is working I can display the choice in a table. But to filter Tab2 by doing FILTER(Tab2, Tab2[col2]<[selectedvalue]) it creates me a blanck table. Whereas if I do FILTER(Tab2, Tab2[col2]<10) it's working I have only values between 1 and 10 for instance of my Tab2. My measure is a wholenumber. I have no relationship between Tab1 and Tab2. Thanks for your help, Don't hesitate if I'm not clear, RobSolved1.6KViews0likes8CommentsDAX filtering with Slicers through multiple one to many related tables
Hi all, First time posting but any help would be greatly appreciated. I've reduced the model down to remove some complexities but still having issues pulling information correctly through tables. Schema is like a reversed star schema i.e. the fact table is the 1 on the one to many side relationship (this is the part i'm interested in): Programme table (1) => (*) Project table Project Table (1) => (*) Project Theme table Represented below with dubby data: Wider Schema In the main report I am using a table with the main element being ProgrammeReference and as expected when I use a slicer containing anything from project it doesn't filter and so I need some DAX in order to retreive the data. When I add the following visual level filter on report it filters the report BEFORE the slicer is used which isn't what I want: Linked project Cross filter slicer = CALCULATE(DISTINCTCOUNT(Programme[ProgrammeId]),CROSSFILTER(Project[ProgrammeId],Programme[ProgrammeId],Both)) So any help getting the report to filter only when the slicer is used would be very helpful. Slicer: Linked Project Stage, 'Project'[Project status] However I also need a slicer to filter the main report using fields from the Project theme table, but only after the slicer has been used, I've attempted writing some DAX of my own but it simply removes all fields from the report e.g. the below did not work: Project Theme Cross filter slicer = if( ISFILTERED('Project Theme'[ProjectThemeType]) = TRUE(), IF( Project[Linked project Cross filter slicer] > 0, CALCULATE(DISTINCTCOUNT('Programme'[ProgrammeId]),CROSSFILTER('Project Theme'[ProjectId],Project[ProjectId],Both)))) I had envisioned some kind of Measure would be required to be added as a visual level filter to the main report but open to other solutions. Let me know if more information is required! Thanks in advance Scott992.4KViews0likes9CommentsHelp! Want to filter a table if the slicer selection is in either one of 2 columns.
Hey, So for data structure, I have two tables with similar info, but they are tied together by posn number. The end goal is that the slicer will filter the table if the selection is in either of the two columns in the table. I tried to make a dimension table using 'summarize' to create the slicer, pulling all the personal trades from one table, and all the positional trades from another table. dim Trades = DISTINCT( UNION(SUMMARIZE('All Pers', 'All Pers'[Trade Name]), SUMMARIZE('POSN Trade', 'POSN Trade'[Trade Name]) ) ) It doesn't seem to be working. When I use the slicer, it's only pulling up lines that have the selected Trade name, but it's not pulling up the people that have the pers trade, in posns with a diff trade. Any ideas?Solved892Views0likes3Comments