power bi desktop rs
16 TopicsPower BI Report Server Version Mismatch – Unable to Publish Report (Cannot Find 2023 Desktop)
Hi everyone, Our organization’s Power BI Report Server is on September 2023 release. I created a report using Power BI Desktop (optimized for Report Server) – September 2025. When I try to publish the report to PBIRS, I get mismatch version error. downloading Power BI Desktop from the link provided in PBIRS, but it always gives me the latest version (September 2025). I cannot find the September 2023 version anywhere on the main download page. Any advice would be appreciated!Solved1.2KViews0likes4CommentsSupport for visual elements and python scripts in power bi report server, versions for mac/linux
Good time of day. 2025 year. There are several tasks that need to be solved in the Power BI Report Server tool. 1) there is a distribution on the X and Y axes of a certain coefficient at points, these points can be more than 50 thousand pieces. Python handles this issue, but we need to show the distribution in the dashboard (filter points by conditions). We tried using a dot chart and a high-density chart, but there is a limit of 10,000 points. What solution, perhaps, can third-party visuals be used? 2) how to work with python scripts and visualizations now, as far as I know, they are currently not supported in the Report Server. Nevertheless, there are a huge number of python developers and the community is getting bigger - maybe there are some plans to add this feature? and how do people who work with python work with data now? In my opinion, the R language can be removed from the tool altogether, because when choosing from a Python/R pair, 90% will choose python. 3) Will there ever be a Linux/Mac OS version? Some colleagues have Macbooks and Linux devices, and in order to work with Desktop, they have to install add-ons. Software, or provide them with another Windows laptop. Why the tool doesn't have cross-platform functionality is still a mystery to us. I have identified three functions that are critical for us. Thank you in advance for your help.Solved742Views0likes1CommentWhere can I download Power BI Desktop for Report Server May 2022
I need to download/install Power BI Desktop for Report Server May 2022 (Version: 2.105.1143.0). I don't have access to a Report Server Installation so I can't use a download link provided there. Is there another place where I can download historic versions? thanks and regardsSolved2.1KViews0likes1CommentPower BI Desktop
Hi, I have installed Power BI desktop RS January 2023 and the SSMS 19.0.2 I get an error message "We're not able to upload this report. The report was created with a recent version of Power BI Desktop that is not yet supported by this server." I can see that some people had this issue in 2020 but I could not find a solution. Do I need to install an earlier version of Power BI desktop? or does anyone have a solution. Any help would be greatly appreciated. Thanks in advanceSolved2.2KViews0likes6CommentsPaginated Report not distributing Count values correctly
Hello, I've just started to work a bit with Report Builder with our Power BI Report Server and although I've done some progress, I'm right now stuck with a requeriment which is so simple in Power Bi, but seems a bit more complex in a paginated report. First I've created a KPI which is a simple COUNT with some filter expresions: =CountDistinct ( IIF ( Fields!Diff.Value > 0 And Fields!Action_Phase.Value <> "Complete" And Fields!Action_Phase.Value <> "Void",Fields!Number.Value,Nothing),"DataSet1") If I put this as an expression in a TextBox, works perfectly and gives me the expected result, say 150 However, now I have to create a table like: City ; Count, but when I create this simple table and set the expresion also in the table, I obtain the following result: City Count A 150 B 150 C 150 When the expected result would be: City Count A 100 B 25 C 25 It seems the count is not being aggregated correctly. I've also tried to create the count as a calculated field in the DataSet, and use this field in the table instead, but is not allowing me as it gives me the following error when I execute the report: "The expression used for the calculated field 'Count' includes an aggregate, RowNumber, RunningValue, Previous or lookup function. Aggregate, RowNumber, RunningValue, Previous and lookup functions cannot be used in calculated field expressions." Any suggestions? Thanks in advance!2.1KViews0likes4CommentsSet-up data source in power bi report server
Hi, In our company we want to set-up a deployment startegy, we have three Power bi report server environment (dev,test,prod) . we just use power bi desktop and Power BI report server . We will be using direct query sql server, my question is that we should set-up the data source each time we change the environment. we use the powershell command Write-RsRestCatalogItem to upload the report. I was wondering if there is a way that username and password of the sql db will be transmitted when the user publish from power bi desktop to power bi report server. and from the power bi report server to the different environment thanks650Views0likes1CommentPower BI Service to Report Server on premise solution
Hi, We have developed some reports on Power BI desktop tool via direct query and published to Power BI service on cloud. Due to cloud hosted region restrictions, if the plan is to move all to the on premise solution(i.e. Report Server), what kind of changes are expected ? Keeping in mind both desktop tools are different, can I use the same pbix file and open on Power BI desktop (Optimized version for Report server) ? Or all the reports needs to be developed again on the desktop tool for the report server? I can see documentation on moving from Report server to the Cloud service. But is there any document for the other way round ? Any help would be much appreciated. Thanks.Solved1.7KViews0likes3CommentsConnecting to SharePoint libraries and lists - PBI RS
Hello everyone, I have a PBI dashboard connected to a series of Excel files hosted in a SharePoint library and also to a SharePoint list, both within the same site (SharePoint 2013). As usual, from PBI Desktop the connection works great, but when trying to authenticate in PBI Report Server, things get complicated. I had to create what we call a service account (just a generic user) to validate the data connections in PBI RS. However, when I try to test the connection from the Data Sources panel, I get the following error: "The report server couldn't connect to the data source using the information you entered. Make sure you've entered the connection string and any credentials correctly." Error details: "OData: The given URL neither points to an OData service or a feed: 'https://contoso.com/sites/topsitename/subsitename'." I am not sure if this is a permissions-related issue or if it has something to do with how the connection is built in PBI Desktop. I used the standard SharePoint On-Prem connector for retrieving the data both from the library and from the list. I was thinking that maybe the problem is in the Connection String (https://contoso.com/sites/topsitename/subsitename), but I can't modify it. It just points to the subsite where the library and list are hosted, as that is what the SharePoint connector requires to make the connection in PBI Desktop. Any help would be REALLY appreciated!Solved1.3KViews0likes3CommentsCALCULATE function does not filter data
I am trying to use the CALCULATE function in DAX to find sum of income in last 12 months. The measure I am using is as below Sub measures Latest Month in Table = MAX(pbi_inc[yymm]) Samemonth_prev year = [Latest Month in Table] -100 Main DAX: income_inc= var lm = [Latest Month in Table] var r12m = [ Samemonth_prev year] return CALCULATE(SUM(pbi_inc[inc], pbi_inc[ic/cr] =1,pbi_inc[yymm] >=lm , pbi_inc[yymm] <=r12m) The issue I am facing is the Calculate function is not filtering data for yymm. It filters data when I change the ic/cr value but not for yymm. It works fine when I hardcode to something like 2112 but not when I use variables and submeasures. I have compared the data types and spaces and all are compatible. All fields are taken from the same fact table Can some one please help me?Solved2.2KViews0likes2CommentsUnable to add report server. "Unexpected error encountered"
Whenever I try to add a Power BI Report Server in Power BI Desktop RS, I get the infuriating error "Unexpected error encountered." Has anyone run into this? When I try and open a report directly from the server, I receive the following: Feedback Type: Frown (Error) Error Message: Unexpected error encountered Stack Trace: Microsoft.PowerBI.Client.Windows.Storage.FileOpenException at Microsoft.PowerBI.Client.Windows.Storage.FileOpenError.HandleError(IWindowService windowService, LocalizedString title) at Microsoft.PowerBI.Client.Windows.Services.FileOperationUIHandler.OpenFileInternal(IPowerBIWindowService windowService, IExceptionHandler exceptionHandler, IQueryServices queryServices, IOpenSaveUI openSaveUI, TelemetryUserActionId entryPoint, IPbixFile pbixFile, Boolean fromRecentFile) at Microsoft.PowerBI.Client.Windows.Services.FileOperationUIHandler.OpenFileFromSSRSService(IPowerBIWindowService windowService, IExceptionHandler exceptionHandler, IQueryServices queryServices, TelemetryUserActionId entryPoint, Uri reportUri, Boolean fromRecentFile) at Microsoft.PowerBI.Client.Windows.FileCommands.OpenFileRS(IPowerBIWindowService windowService, IExceptionHandler exceptionHandler, OpenFileCommandParameter openParameters) at Microsoft.Mashup.Host.Document.ExceptionHandlerExtensions.HandleExceptions(IExceptionHandler exceptionHandler, Action action) Stack Trace Message: Unexpected error encountered Invocation Stack Trace: at Microsoft.Mashup.Host.Document.ExceptionExtensions.GetCurrentInvocationStackTrace() at Microsoft.Mashup.Client.UI.Shared.StackTraceInfo..ctor(String exceptionStackTrace, String invocationStackTrace, String exceptionMessage) at Microsoft.PowerBI.Client.Windows.Telemetry.PowerBIUserFeedbackServices.GetStackTraceInfo(Exception e) at Microsoft.PowerBI.Client.Windows.Telemetry.PowerBIUserFeedbackServices.ReportException(IWindowHandle activeWindow, IUIHost uiHost, FeedbackPackageInfo feedbackPackageInfo, Exception e, Boolean useGDICapture) at Microsoft.Mashup.Client.UI.Shared.UnexpectedExceptionHandler.<>c__DisplayClass15_0.<HandleException>b__0() at Microsoft.Mashup.Client.UI.Shared.UnexpectedExceptionHandler.HandleException(Exception e) at Microsoft.PowerBI.Client.Windows.Utilities.UIBlockingAwareExceptionHandler.HandleException(Exception e) at Microsoft.Mashup.Host.Document.ExceptionHandlerExtensions.HandleExceptions(IExceptionHandler exceptionHandler, Action action) at Microsoft.Practices.Prism.Commands.DelegateCommandBase.<>c__DisplayClass4_0.<.ctor>b__0(Object arg) at Microsoft.PowerBI.Client.Windows.Commands.CompositeCommand`1.Execute(ICommand command, Object parameter) at Microsoft.Practices.Prism.Commands.CompositeCommand.Execute(Object parameter) at Microsoft.PowerBI.Client.Windows.Commands.CompositeCommand`1.Execute(T parameter) at Microsoft.PowerBI.Client.Windows.RecentFileHostService.<>c__DisplayClass10_0.<OpenRecentFile>b__0() at Microsoft.PowerBI.Client.Windows.HostServiceDispatcher.<>c__DisplayClass7_0.<ExecuteOnUIThreadAsync>b__0(Object t) at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) at System.Delegate.DynamicInvokeImpl(Object[] args) at System.Windows.Forms.Control.InvokeMarshaledCallbackDo(ThreadMethodEntry tme) at System.Windows.Forms.Control.InvokeMarshaledCallbackHelper(Object obj) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme) at System.Windows.Forms.Control.InvokeMarshaledCallbacks() at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Form.ShowDialog(IWin32Window owner) at Microsoft.Mashup.Client.UI.Shared.WindowManager.ShowModal[T](T dialog, Func`1 showModalFunction) at Microsoft.PowerBI.Client.Program.<>c__DisplayClass4_0.<Main>b__1() at Microsoft.PowerBI.Client.Windows.IExceptionHandlerExtensions.<>c__DisplayClass3_0.<HandleExceptionsWithNestedTasks>b__0() at Microsoft.Mashup.Host.Document.ExceptionHandlerExtensions.HandleExceptions(IExceptionHandler exceptionHandler, Action action) at Microsoft.PowerBI.Client.Program.Main(String[] args) PowerBINonFatalError: {"AppName":"PBIDesktop","AppVersion":"2.97.863.0","ModuleName":"Microsoft.PowerBI.Client.Windows.dll","Component":"Microsoft.PowerBI.Client.Windows.Storage.FileOpenError","Error":"Microsoft.PowerBI.Client.Windows.Storage.FileOpenException","MethodDef":"HandleError","ErrorOffset":"148"} Snapshot Trace Logs: C:\Users\Administrator\AppData\Local\Microsoft\Power BI Desktop SSRS\FrownSnapShot68ba94a1-7103-4804-82f2-fd92fc746551.zip Model Default Mode: Empty Model Version: PowerBI_V1 Performance Trace Logs: C:\Users\Administrator\AppData\Local\Microsoft\Power BI Desktop SSRS\PerformanceTraces.zip Enabled Preview Features: PBI_ImportTextByExample Disabled Preview Features: PBI_shapeMapVisualEnabled PBI_SpanishLinguisticsEnabled PBI_JsonTableInference PBI_ExcelTableInference PBI_qnaLiveConnect PBI_azureMapVisual PBI_dataPointLassoSelect PBI_compositeModelsOverAS PBI_dynamicParameters PBI_enhancedTooltips PBI_rdlNativeVisual Disabled DirectQuery Options: TreatHanaAsRelationalSource Cloud: GlobalCloud PowerBIUserFeedbackServices_IsReported: True Formulas: section Section1;1.3KViews0likes2Comments