parameters
46 Topicseditar parámetros de un dashboard publicado en Report Server
Hola, existe alguna manera de editar un parámetro de un dashboard publicado en report server? No veo que el portal web muestre la lista de parámetros. Y tampoco he sabido ver que vía api sea posible. Saludos, VictorSolved744Views0likes2CommentsReport Builder keeps saying I have a parameter that I actually deleted
Hello, I am trying to build a report in Report Builder and have hit a snag. I am working with car insurance data. I have a boolean variable called "IsClaimOpen" that I turned into a parameter using my dataset Query Designer. (The values are Yes and No.) Report Builder called it "ClaimIsClaimOpen" by default. For clarity I went into the Parameter Properties and changed the name to simply "IsClaimOpen". All good so far, right? Wrong. When I ran the report, I received the following error message (with a buffering symbol and a "Loading..." message behind it): So I decided to go back and find out what the problem is. But not before playing around a little with the report. Once I got rid of the error message, the canvas showed me this error message: But I WAS able to select Yes or No from the parameter. If I hit "View Report", though, it would bring up the same error message as before, again with a buffering symbol and a "Loading..." message behind it. First I opened the Parameters folder on the the Report Data pane. There was one parameter there, labeled "IsClaimOpen". Then I went into the Dataset Properties window and then the Parameters section. Again, there was one parameter there, labeled "IsClaimOpen", with the expression "=Parameters!IsClaimOpen.Value(0)". I even tried running the report again, only to be taken to the same canvas as before. So I went back to Designer view and opened up Dataset Properties, because surely there was something I missed! I opened up Query Designer and browsed a bit, but I couldn't find anything. So I closed the Query Designer window and navigated to the Parameters tab of the Dataset Properties window. There I found the problem. There were two parameters listed. The second was named Is_Claim_Open and had the same expression as the one I named IsClaimOpen, but the first was called ClaimIsClaimOpen and was blank! I deleted this parameter immediately, and then ran the report again. But I got the same result as before. Does anyone have an idea what is causing this or how I can fix it? Thanks, JoeSolved14KViews0likes5CommentsRLS and Parameters Issue
Hi everyone, I’m running into an issue with a visual in my Power BI report that uses RLS (Row-Level Security) and parameters. The report includes a table of email addresses (used as the principal user field), which connects correctly to two other data tables. RLS is working as expected across the report—except for one bar chart visual that uses parameters in the axis. Here’s the setup: The X-axis uses a parameter to switch between different measure fields. The Y-axis uses another parameter for slicer-based values. Both parameters are also available as slicers so users can control how the chart displays. The issue: When a user selects a value from a parameter that isn’t related to user identity, the visual shows totals for all users instead of just their own data. This breaks the RLS logic and exposes data they shouldn’t see. I’ve tried applying filters at the visual, page, and report level, but nothing seems to restrict the visual to only the RLS-filtered data. It seems like the parameters may be overriding or bypassing the RLS filtering somehow, but I’m not sure why. Has anyone experienced this before or have any ideas on how to resolve it? Thanks in advance!Solved1.1KViews0likes3CommentsHow to get two enviroments in one workspace?
Hi, sorry for probably a stupid question, but all of this is new to me. We have created one workspace for a single report (as there is basically one user for it), which are DEV and PROD. The person who set it all up has left and I managed to mess things up. In the workspace, under the semantic model settings, there were two sets of parameters and data source credentials. Now there are just one. I have checked the Power BI desktop and there it still shows two different parameters for SQL Endpoint and Lakehouse. I did change name to SQL Endpoint and Lakehouse for two of the tables (from advanced settings), could that have messed things up?618Views0likes3CommentsDifferent column output basing on Parameter Selection
Hi Guys and Welcome Everyone! my first post in this community :). I have following query. I have created parameter using "New Parameter" -> "Numeric Range" Then I have edited parameter settings as follows: Then I would like to have column with different output depending on parameter selection. I wrote formula as follows: When I test it in report view, I always get "NOTPASSED", whatever I choose in the slicer. Do I miss anything or is there other workaround to achieve my goal?Solved1.3KViews0likes7CommentsTabular Editor - Field Parameters - fields from more than 1 table
Hi Is it only possible to add fields from one table to create parametrs via Tabular Editor? In Analysis Services connected to a date warehouse I have various dimesnions which I would like to be selectable (customer, state, channel, salesperson etc). I have tried using the C# script posted by Daniel Otykier however seems it is limited to selecing fields from 1 table only. Is this correct?735Views0likes1CommentPower BI Report Builder - Distinct Parameter Values while maintaining Data Model
Hello, I have read so many blog/ forum posts on this but I can't for the life of me get this working, so I really appreciate any help. I am creating a Paginated Report, which is linked to a Power BI Dataset that has two tables which are linked together. I want cascading parameters, and this works if I add the parameters by right clicking the Parameters folder and selecting Add Parameter, then getting Available Values from a Query pointing to the relevant table . Done this way, the selection I make in my first parameter limits the options available in the second (yay) EXCEPT that the values in the parameter drop down are not DISTINCT, so I literally have the same option appearing 20+ times: If I add the parameter when creating my datasets (by dragging a field into the Parameters section in the Query Designer) then I get DISTINCT values, but the first parameter no longer filters the second. To try and resolve this I have created separate tables that have DISTINCT values using a Query like the below: DEFINE VAR DistinctValuesTable = SUMMARIZE ( FILTER ( 'EntityGroup', EntityGroup[Organisation] = SELECTEDVALUE(@EntityGroupOrganisation) ), 'IndicatorHandbook'[Corporate Plan / Annual Report] ) EVALUATE DistinctValuesTable Then I set the Available Values for the parameter to this table, which does remove duplicates but the issue remains that the options in subsequent parameters are not affected by earlier selections. Any help would be greatly appreciated. I can't figure out why this would be so difficult, surely no-one wants the parameter options to work this way by default?!7.7KViews4likes2CommentsField Parameter Work Around
Good Day All I hope you can advice me on a way to use DAX to create a Field Parameter like function. I want to use a bar or column chart to display the total counts per User based on a paramter I created. I can add my Switch measure for counts on the x - axis but when I do something simular for the users it does not work when I add it to the y - axis. Every google search I do points back to the Desktop version of Field Parameters But PowerBI RS does not have that function. Data: I have one main table with all the data. In this table i have a column with a unique number that I use for counts. I have TimeStamp columns for each process of the unique number and with the TimeStamp there is a User I have duplicated the main Users table into the diffrent processes. UserAcknowledged, UserPhoned, UserCompleted. I created an index And then linked them to the Main Table on the individual UserID's, the TenantID's, and ClientID's Take Note: I have another version Where I kept the UsersTable as one table but broke up the Main table in the diffrent pressess but that increased my file size alot but I was at least able to design my chart. I created a Slicer measure that will control the counts and hopefully the users all at once (Slicer)_OperationStages = UNION( SELECTCOLUMNS( GENERATESERIES(1, 7, 1),"ID", [Value], "StageDesc", SWITCH( [Value], 1, "All", 2, "Acknowledged", 3, "Phoned", 4, "Completed", 5, "Canceled", 6, "Dispatched Stack", 7, "Dispatched") ), ROW("ID", 0, "StageDesc", "Unknown") -- Add an "Unknown" stage with ID 0 if needed ) When I create the Switch function measure for users it does not allow it to pined to the bar chart visual _Exp.Switch.All(Users) = VAR SelectedStageID = SELECTEDVALUE(('(Slicer)_OperationStages'[ID])) RETURN SWITCH ( SelectedStageID, 2, SELECTEDVALUE('dimUsers(Ack)'[Username]), 3, SELECTEDVALUE('dimUsers(Phn)'[Username]), 4, SELECTEDVALUE('dimUsers(Com)'[Username]), 5, SELECTEDVALUE('dimUsers(Can)'[Username]), 7, SELECTEDVALUE('dimUsers(Disp)'[Username]), BLANK() -- Return blank if no selection or unexpected ID ) Is there any advice that someone can provide to help me.Solved2.2KViews0likes5CommentsPass Main Report Parameters to Nested Sub-Report
Hi, I am using PowerBI Report Buidler to build a paginated report. Is there a way to pass main report parameters to a sub-report that is nested within another sub-report? Trying to do this but it is causing errors in the first sub-report. ThanksSolved833Views0likes1Comment