need info
32 TopicsBing Maps Deprecation and Power BI Report Server Impact
Hi every one, Hi understand from the Power BI October 2025 Feature Summary blog post that Power BI is transitioning from Bing Maps to Azure Maps. The article details the migration for Power BI Desktop, Web (Edit-mode), and Power BI Report Builder (PBIRB) for paginated reports. While the post outlines a two-phase migration for paginated reports from Bing Maps to Azure Maps in PBIRB and eventually in the service, it is not explicitly clear what the implications are for Power BI Report Server environments. Can the Power BI team confirm if the transition from Bing Maps to Azure Maps for Power BI Desktop and paginated reports will also affect Power BI Report Server? We’d appreciate details on the timeline and any necessary steps for existing reports using Bing Maps visuals. Best regards! Marco3.8KViews0likes4Commentsdynamic percentage
Hello everyone. I am currently working with the following dynamic table. The idea of this is that in the %Total column of Count Uid, 100% appears for the product in general, but when subdividing it by the price range, it appears to me the percentage that each range is distributed to form 100%. I currently have this DAX measure, but I have not been able to discriminate each percentage in order to achieve my objective. %Total Count Uid for Ranks = VAR Den = CALCULATE([Count Uid], ALLSELECTED(Compliances)) RETURN DIVIDE([Count Uid],Den) If anyone can help me with this I would be grateful. Thanks in advance for any assistance.Solved3.3KViews0likes2CommentsDYNAMIC FUTURE RUNNING TOTAL
Hi I have really scratiching my head, i have being trying to get a dynamic running total calculation Dax, in which depedning of the week I choose I get a different running total calculation, like the one I depict into the excercise. For example if I chose week feb 20 I need to get the running total calculation into the future depict in column e, First cell is exactly the same for the initial invontiry amount, but for the next week it will be this new value in E4 - Dmd Total for that new week C5, (and so on until you reach 10,221), Also I want to have the flexibility if Change the date from Next week get the result in column G starting on Febreruary 27. Hope someone can help me out Regards765Views0likes2CommentsPower BI REST API to return response in browser
bcdobbs d_gosbell If I host my data model in a premium capacity workspace, is it possible for me to run any endpoint/REST API to return the result of a DAX query in a browser, for example something like https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/EVALUATE VALUES(Org[Mgr]) I went through Announcing the public preview of Power BI REST API support for DAX Queries and Datasets - Execute Queries and did not find anything. I am simply trying to understand if there is a way for me to fetch the data (of the multidimensional data model) from the SSAS server outside of Power BI environment. If I can access the dataset externally (outside of Power BI), I can further process the data to my req (for example, developing visualization using other languages to display the viz in a browser and let my audience consume it through the browser).Solved1.7KViews0likes2CommentsIF Issue in Measure
Hello Everybody, how are you? ı have question about writing a row context dax in a ıf clause . ı want to wrıte this query(*1) ınsıde of this query(*2). how to do that do u think? *1: IF A[X]="H" THEN A[Y]*A[Z]*(-1) ELSE IF A[X]="S" THEN A[Y]*A[Z] ELSE 0 -- A= TABLE NAME. X,Y,Z COLUMN NAME. NOTE: I TRYED SWITCH FX BUT IT DOESNT WORKED. *2: Values = IF( ISBLANK( [Day] ), BLANK(), ---HERE İS GONNA BE SUM OF FORMULA(*1) ---- )) -- Values is measure. Thanks,1.1KViews0likes2Commentsdate ıssue
Hi , ı have questıon about brınging selected date to maın table which is customer. ı have date field in date table as - selected date =selectedvalue('DATE'[actualdate])- and what ı wanna do is that when ı select a date from 'DATE'[actualdate] filter it is going to be shown in the source table of maın table as duplicated in all rows. for example ı have customer table when ı select date as 01.01.1991 ı wanna that target data will be as below: source ------->>>>>>> target cust_ıd,name,age | cust_ıd,name,age,selecteddate 1,tony,61 | 1,tony,61 ,01.01.1991 2,hony,71 | 2,hony,71,01.01.1991 3,pony,81 | 3,pony,81,01.01.1991 note: there is no relation between tables in logic model. how can ı do that? if somebody help it will be perfect for me thanks,Solved5.1KViews0likes2CommentsLookup tier with multiple results expected
I need a dynamic lookup on a table consisting of tiers Table A: Type Holding Company Company Spend Date Table B Type Holding Company Company Rebate Amount from Amount to Date from Date to The user should be able to filter by Type, Holding Company ,Company and see the total spend for a particular date range selected from Table A in their report The total amount (for the date range selected) should look up table B and find the correct rebate amount in the tier for selection. The user should be able to select a Company within the Holding company and that spend total should correspond to the tier for that Company in Table B to obtain the rebate - The total spend will differ on a Holding Company versus a Company. Mutiple values is expected as the user should be able to select multiple Holding Companies in their selection Type Holding Company Company Spend Date Gas HLD - CompanyA CompanyS 6,675 2020-01-29 Gas HLD - CompanyB CompanyT 9,262 2020-01-29 Gas HLD - CompanyA CompanyV 2,430 2020-01-29 Gas HLD - CompanyB CompanyW 5,785 2020-01-29 Gas HLD - CompanyA CompanyX 5,239 2020-01-29 Gas HLD - CompanyB CompanyZ 12,835 2020-01-29 Gas HLD - CompanyA CompanyS 11,015 2020-02-06 Gas HLD - CompanyC CompanyT 7,227 2020-02-06 Gas HLD - CompanyD CompanyV 14,104 2020-02-06 Holding Company Rebate% Amount from Amount To Date From Date To HLD - CompanyA 1.00% 20,000 40,000 2020-01-01 2020-12-31 HLD - CompanyA 3.00% 40,001 60,000 2020-01-01 2020-12-31 HLD - CompanyA 5.00% 60,001 9,999,999 2020-01-01 2020-12-31 HLD - CompanyB 2.00% 50,000 75,000 2020-01-01 2020-12-31 HLD - CompanyB 4.00% 75,001 100,000 2020-01-01 2020-12-31 HLD - CompanyB 6.00% 100,001 250,000 2020-01-01 2020-12-31 HLD - CompanyC 2.50% 150,000 175,000 2020-01-01 2020-12-31 Expected output: Rebate appl Rebate band Calc Rebate HLD - CompanyA 89,878 5% 60,001 4,493.90 HLD - CompanyB 99,342 4% 75,001 3,973.68 HLD - CompanyC 129,296 0% 150,000 -00 HLD - CompanyD 99,109 2% 80,000 1,982.18951Views0likes3CommentsData reduction algorithm
Hi, im working on custom visual that returns this error: "too many 'Task No' values" Not displaying all data. Filter the data or choose another field." I tried to fix this according the data reduction algorithm: https://github.com/mvgaliev/PowerBI-visuals/blob/942d72065ec6703878249d32cb8df41a00827750/Capabilities/DataViewMappings.md The error is due to "tasks". so i tried this: (on capabilities.json) "categorical": { "categories": { "select": [ { "for": { "in": "Task" } , "dataReductionAlgorithm": { "top": { "count": 30000 } } }, { "for": { "in": "Parent" } }, { "for": { "in": "StartDate" } }, { "for": { "in": "Resource" } } ] }, "values": { "group": { "by": "Legend", "select": [ { "for": { "in": "EndDate" } }, { "for": { "in": "Duration" } } ] } } } But it seems to have no affect. I also tried to set property to "window" or "bottom" and reduce count.2.6KViews0likes1Comment