parameters
33 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.1KViews0likes3CommentsPower 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. ThanksSolved833Views0likes1CommentHave a Line Chart Ignore Parameter Selected
Hello, I am trying to achieve having a line chart that shows the average revenue of the company selected. My only issue is that the two parameters that I have on the top of the report are DATE & COMPANY. Now I want the entire page to load off of the DATE & COMPANY selected, but for the line chart. I want this to just be affected by the COMPANY selected but show all data for all dates. Basically I am attempting to see the average of the revenue over time in this line chart, while having the rest of the report be filtered to the selected date parameter. Any help on this would be greatly appreciated.589Views0likes2CommentsPower BI Report Builder Parameters Type mismatch error
Hello, I'm building a paginated report on Power BI Report builder using an SSAS cube as my data source. I'm having issues with some of my parameters. If I select ALL or just one value I don't get an error, but when I select two or more values it throws me the following error: The following system error occurred: Type mismatch. ---------------------------- Query execution failed for dataset 'TransactionsX'. ---------------------------- An error has occurred during report processing. ---------------------------- An error occurred during local report processing. Has anyone else experienced this issue? I've been looking all over the place and I can't find a solution. Thank you,Solved5.7KViews1like4CommentsReport Builder And/Or Parameters
I need some help. I am needing a way to set parameters for a paginated report that are an OR situation. The example is a report that shows the invoices that were created or paid within a selected month. Sample data: Invoice # Create Date Paid Date S001 1/15/2023 2/15/2023 S002 2/10/2023 4/2/2023 S003 2/11/2023 3/5/2023 S004 3/5/2023 3/15/2023 S005 3/8/2023 S006 4/10/2023 They need to be able to select parameters for the Create Date start and end as well as the Paid Date start and end. An example would be for the month of March. Create Date parameters would be 3/1/2023 to 3/31/2023 and the Paid Date Parameters would be 3/1/2023 to 3/31/2023. We want the report to return Invoices S003, S004 and S005. I have been able to get the parament range to work for one or the other or both together, but am having trouble getting it set for OR. Please help. Thank you in advance.818Views0likes1CommentHow to remove a parameter? (PowerBI Report Builder)
Hi, I'm working in PowerBI Report Builder. Whenever I try to delete a parameter and then run my report, it says: The Value expression for the query parameter ‘DeletedParameterName’ refers to a non-existing report parameter ‘DeletedParameterName’. Letters in the names of parameters must use the correct case. ---------------------------- The definition of the report '' is invalid. ---------------------------- An error occurred during local report processing. Any advice on removing parameters in a clean fashion?Solved13KViews0likes3Comments