User Profile
BIlix
Helper II
Joined 3 years ago
User Widgets
Contributions
Need help with avoiding many to many relationship
I have a data Model that contains a project table with project entries on a project entry granularity. Each Row has projectvalues for a whole month, e.g. 202406. I Also have a Sprint Dimension, where each Month consists of two sprint, e.g. Sprint 1 202406, Sprint 2 202406. I need to connect the tables without duplicating Values in the fact tableSolved531Views0likes2CommentsSlicer search box should show values that "start with" and not "contains"
I got a requirement that the search box should jsut show values of a string column that start with the search value. By default the slicer shows all values that contain the input value. E.G A400 should show all values that start with A400 and not B200A400500. This is possible with the filter panel, but not with a slicer search box I suppose. Is there any custom visual that enables this feature?Solved1.4KViews0likes2CommentsNeed help with a measure calculation
Hello Community, I have a measure that sums a column in a fact table. The fact table has a datekey in Format 20240529 and a Datekeyperiod which is 20240501. Both are integers. Datekeyperiod is related to my Datetable. The datekey stores the date on which the entry was submitted to the facttable I need to calculate my Measure for a Linechart with Year and Month in X Axis and the Measure in Y Axis. The requirement for e.g. January 2024 is that I calculate all Values in my fact table Where Datekeyperiod is in 2024, eg. >= 20240101 and <= 20241201 AND datekey is <= 20243101 and so on. The result should be all values for the current business year in context where the submission entry was in or before the current month in context. Therefore the value for February should be the value for january + rows that were submitted on or before february 29th 2024. VAR Currentyear = MAX(dim_date[year]) VAR CurrentDatekey = MAX(dim_date[datekey]) VAR MaxDate = MAXX(FILTER(ALL(dim_date), dim_date[year] = Currentyear), dim_date[datekey]) VAR MinDate= MINX(FILTER(ALL(dim_date), dim_date[year] = Currentyear), dim_date[datekey]) VAR Filteredtable = FILTER(ALL(facttable), (facttable[datekeyperiod] <= MaxDate && facttable[datekeyperiod] >=MinDate) && facttable[datekey] <= CurrentDatekey ) VAR Result = CALCULATE([Measure], Filteredtable) RETURN Result366Views0likes1CommentRe: Tricky requirement for a slicer filtering
Thanks for your reply. I attached a sample file: https://file.io/sxn8Vw5Cxo8B The outcome should be like this: I tried using Calculation Groups and Field Parameters so far. I also tried to use two overlapping Linecharts to achieve the highlighting of the selected Manufacturer, which is working good, but not perfect. Turn of the Slicer interaction on one line Chart, put it in Background and turn on Slicer interactions on the Line Chart in the front.509Views0likes1CommentTricky requirement for a slicer filtering
I have a slicer with Values from a Dimension Table Column and a Line Chart with a measure, Dates, and the Dim Table Column in Legend. When I select a value in the slicer two things should happen: - The selected Values Line in the Chart should be highlighted. - The Values which are not selected in the Slicer should be renamed from their actual name to "Category A" , "Category B" etc. I am not sure if this is possible. I tried Field Parameters but could not get a proper result yetSolved587Views0likes3CommentsChange Model Language with PBIB
Hello Community, I want to change my Reports Model Language. I know, that this is not possible after creating the Model. Did anyone tried to achieve this by using a PBIP File? My first attempt would be to create a new Report, Import the Data, save as PBIP and replace the necessary Files with the PBIP of the existing report. Is this possible?Solved1.4KViews0likes4CommentsPower BI App for Sharing to external Users
Hello, I created a report which includes a table with Email of external Customers which should be able to view the report inside a App. Inside PBI Desktop the RLS works, A user can only view its associated data. When I grant Access to the users inside my app, they still get the error, that the report cant be viewed because the underlying report uses rls. Do I have to give every User a permission for the dataset? I thought giving them access for the app should be enough.330Views0likes1Comment
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.