desktop version
13 TopicsCloud and desktop version showing different results
Hello everyone, I hope I got the right forum... and I also hope someone can help me to understand where the problem lies. On my MySQL database I have one table GoalsTarget with these values: Name|Target milestone Goal 1 | MS01 Goal 2 | MS01 Goal 3 | MS03 Then I have anothe table GoalsForecast with these values: Name|Forecast milestone Goal 1 | MS01 Goal 2 | MS02 Goal 3 | MS05 Then I have a view v_results that gives an overview on which goal will reach the target ("1" is "Yes", "0" is "No", of course) Name|Forecast|Target|Meet Goal 1 | MS01 | MS01 | 1 Goal 2 | MS01 | MS02 | 0 Goal 3 | MS03 | MS05 | 0 If I pull these data on pbi desktop, everything works fine (the "T" is the equivalent of the "Meet" column, i.e. if "Forecast" = "Target"). I then publish it on the cloud, and everything is still fine. When the scheduled refresh kicks in, I have always "0". If I pull the data from the desktop at the same time, the data are still fine. I really don't know where the problem could lie... any suggestion?578Views0likes1CommentError when formatting number using FORMAT
Hi All I am trying to format a number in a certain format (space seperator) but getting an error. Its a simple if statement, and the value that I want to format is a whole number. Not sure what I am missing or doing wrong. Thanks everyone. Regards, Jerusha746Views0likes3CommentsNeed help quick! Percent On Time measure not working with filters?
I have a whole page dedicated to exploring our products that have shipped late, meaning there is a page filter for [On Time Ship]="False". I also have a measure to calculate the % on time for each product. The formula is: % On Time = CALCULATE(DISTINCTCOUNT(CVD_OTD_FTMS_IV[Reference Number]),CVD_OTD_FTMS_IV[On Time Ship]=true(),REMOVEFILTERS(CVD_OTD_FTMS_IV[On Time Ship]))/CALCULATE(DISTINCTCOUNT(CVD_OTD_FTMS_IV[Reference Number]),REMOVEFILTERS(CVD_OTD_FTMS_IV[On Time Ship])) where [Reference Number] is the unique identifier for someone's ordered item. This measure isn't working the way I want it to and I am not sure why. The count of late items works as expected, but the total count (or denominator in my % on time measure) doesn't show what I expect unless I remove the page filter for [On Time Ship]="False". I don't know why this would be the case since I have a RemoveFilters command in the measure formula?? For example, the product below shows this with the page filter applied: and the same product without the page filter applied: The real total count is 277 for this product. Why is it only 55 when the page filter is applied?? I need help rather quickly, please and thank you!!1.2KViews0likes6CommentsUnable to Refresh desktop after updating PBI
Two of my reports won't refresh at all, and a third has a completely blank report, although the data is there in the data tab. My fellow developer has not updated and he has no problems. The reports on the service are refreshing just fine. If I refresh individual tables, they're fine, but when I hit refresh at the top it all fails. I have uninstall and reinstalled Power BI.1.6KViews0likes6CommentsPulling data in from multiple fact tables for Top 20 customers
Hi, I am trying to retrieve a list of Top 20 customers based on the actual sales, and then capture the figures from three different fact tables for these 20 customers (these are three separate cubes from SAP BW). The output I am looking for is shown below: Please, note that in the data model there are no direct relationships between the fact tables. Any tip/suggestion would be much appreciated. Thank you. Fact Table 1 Fact Table 1 Fact Table 1 Fact Table 2 Fact Table 3 Customer Sales 2019 Sales 2020 Sales 2021 Bonuses 2021 Forecast 2023 A 500 500 500 200 700 B 400 400 400 200 600 C 300 300 300 200 800 Etc. 200 200 200 200 600Solved881Views0likes3CommentsPBI RS October 2020
Hi to everybody, For professional reasons, I must use Power BI Report Server Desktop in the October 2020 version. I had to change my computer and I have lost the .exe for this version. I am unable to find it in any repository. Could someone tell me where you can find this version or the May 2020 version so that I can further develop my work. Thanks in advance. Regards,Solved1.3KViews0likes2CommentsDAX Measure to Ignore Date Slicer
Good Day, I have a date slicer with a direct relationship with the table of unique values that I want a measure to ignore regardless of the active date slicer on the same visual page. I used the formula "ALL" to give me the total count of all unique ID in the table ignoring the slicer. Measure=CALCULATE (COUNT (Unique ID[ID), ALL('Calendar'[Date])) But... I want this measure to have a filter for a specific value which i used next as Measure = CALCULATE(COUNT(Unique ID[ID),FILTER(UniqueID,'Unique ID[Attempts ID]=FALSE()),ALL('Calendar'[Date])) Using this formula the date slicer is affecting the measure. Can someone please correct me if the measure i using is wrong.1.1KViews1like1CommentDynamic calculation based on date slicer
I would like to perform a calculation which involves getting value from previous date. Also if the user selects a date value, I want to dynamically set the first value in that table to be set to a base formula. Formula is as follows. For the first date value my formula should as follows: 1*(1Value) For subsequent dates it should = Previous_value*(1+Value) Here is a sample dataset category region Year Month Date Value Apples West 2018 January January 2018 0.09 Apples West 2018 February February 2018 0.09 Apples West 2018 March March 2018 0.06 Apples West 2018 April April 2018 0.08 Apples West 2018 May May 2018 0.21 Apples West 2018 June June 2018 0.09 Apples West 2018 July July 2018 0.23 Apples West 2018 August August 2018 0.01 Apples West 2018 September September 2018 0.04 Apples West 2018 October October 2018 0.2 Apples West 2018 November November 2018 0.01 Apples West 2018 December December 2018 0.14 Apples West 2019 January January 2019 0.24 Apples West 2019 February February 2019 0.08 Apples West 2019 March March 2019 0.04 Apples West 2019 April April 2019 0.18 Apples West 2019 May May 2019 0.04 Apples West 2019 June June 2019 0.08 Apples West 2019 July July 2019 0.23 Apples West 2019 August August 2019 0.21 Apples West 2019 September September 2019 0.25 Apples West 2019 October October 2019 0.25 Apples West 2019 November November 2019 0.05 Apples West 2019 December December 2019 0.25 If the user selects the start date as March 2019 using slicers. My desired output should be as follows March 2019 the output column = 1*(1+0.04) = 1.04 April 2019 the output column = 1.04(from march output) *(1+0.18) = 1.23 May 2019 = 1.23(from April 2019) * (1+0.04) = 1.28 Then table output should be as follows category region Year Month Date Value Output Apples West 2019 March March 2019 0.04 1.04 Apples West 2019 April April 2019 0.18 1.23 Apples West 2019 May May 2019 0.04 1.28 Apples West 2019 June June 2019 0.08 1.38 Apples West 2019 July July 2019 0.23 1.70 Apples West 2019 August August 2019 0.21 2.05 Apples West 2019 September September 2019 0.25 2.56 Apples West 2019 October October 2019 0.25 3.21 Apples West 2019 November November 2019 0.05 3.37 Apples West 2019 December December 2019 0.25 4.21 Here are the measure that I tried to. It is unable to identify the previous month data get_minimum_date = VAR Minimun_Date = CALCULATE ( min('date'[Date]) ) Return VAR Date_to_Compare = CALCULATE(MIN ( 'date'[Date] ),ALLSELECTED()) RETURN var this_month_data = CALCULATE(Sum(data_v3[Value])) RETURN var value_returned = IF ( Date_to_Compare = Minimun_Date, 0, this_month_data ) return value_returned Using the get_minimum_date measure I tried to do the following measure prvious_date_cal = CALCULATE([get_minimum_date], PREVIOUSMONTH('date'[Date])) However my previous month function is not working and is causing errors Thanks in advanceSolved2.2KViews0likes6CommentsPreventing Server Report from being opened in Desktop
When you publish a report on the server, there is an option towards the top of the page that allows people with more than just viewer rights to open the report in desktop. Is there a way to publish a report without allowing this to happen? Take away the option to open in desktop. I am not a full admin but I have rights to publish reports in the server and add users, refresh schedule times, etc. Thanks819Views0likes2Comments