User Profile
bsz412
Helper III
Joined 4 years ago
User Widgets
Contributions
Re: Line chart upper and lower on tooltip - why
hi Aniya, thanks for the answer! I could not find anything in the configuration, it might be that this feature is available in a previous version of pbi desktop... I dont know. I just deleted the chart and created it again, and now I do not see the upper and lower levels.968Views0likes0CommentsLine chart upper and lower on tooltip - why
Hi, I am re-working a report someone else created, and I dont understand why I see upper and lower values on this line chart. I thought the zoom slider is causing this, but it is there even if I turn that off completely. How can I get rid of this?1KViews0likes2Commentsexporting data - limitations
Hi, I have a power bi data model, and the client wants to store snapshots of it and compare them for quality checks. The issue is that he needs an extract from a table visual containing many attributes and a few measures. The size is way too big so it exceeds the number of rows we can download. I am wondering if there is any way to create a table for him outside of Power BI somehow with the required data. But how can I add the measures to that outside o PBI... (for example if I have total sales measure which is calculated in power bi) Very strange request, I know... thank you for sharing your thoughtsSolved1.5KViews0likes1Commentfixing DAX formula - exchange rate
Hi, I need to convert local currency amounts to EUR by using the exchange rate of the selected end-year and the last available month of that year. I have a formula that works, but it does not use the same ex rate for each month: first column is a date column from a date table second is the local currency amount 3rd: result of my Vlookup ex rate conversion dax measure 4th: ex rate test: shows what ex rate the vlookup measure used the last 2 columns are the result of 2 measures: End month number = VAR _maxyear = MAX('year_selector'[year]) RETURN CALCULATE( MAX(purchases_by_week_vendor[month]), ALL(purchases_by_week_vendor), purchases_by_week_vendor[StartYear]=_maxyear ) End year number = MAX('year_selector'[year]) the 2 measures show the same, correct month and year in this table, however in the Vlookup dax measure these values are changing: Sell-in EUR Vlookup = SUMX ( purchases_by_week_vendor, VAR exchRate = LOOKUPVALUE ( exchange_rates[avg_rate], exchange_rates[source_currency_code], purchases_by_week_vendor[currency_code], exchange_rates[year], MAX ( year_selector[year]) , exchange_rates[month], [End month number] ) RETURN [Sell-in local currency (test)] * exchRate ) The issue is, that the year_selection table is connected to the date table. I cannot inactivate that relationship as the datamodel is used for several reports and I cannot change that relationship. As I see the formula is correctly choosing the year, but the month is not consistent in the monthly breakdown. If selected year is 2022, latest available month in the fact table is November, so the 2022 nov ex rate should be used for each and every month. Any idea how I could fix this formula? thank you !738Views0likes0CommentsSame week of selected year cumulative data
Hi, I would need to calculate cummulative sell-in with weekly breakdown. I have a date table with year, weeknumber, start of the week date etc... The challenge is that there is a year slicer, and YTD sell-in max year should show cummulative data for max year (2022 in this case), and YTD sell-in min year should show cummulative data for the corresponding weeks for the selected min year (2018) Is it possible to create that measure? thank you!385Views0likes0Commentsmoving PBIX data model to visual studio
Hi I have a datamodel developed in power bi desktop. In order to move it to AAS, I have to recreate the datamodel in visual studio. Is there any tutorial / article or anything about how to easily move or recreate a pbix datamodel in Visual Studio? thank youSolved1.1KViews0likes1Commentazure analysis services - good tutorial
Hi All, I would like to learn how to work with azure analysis services. I should move my power bi reports to AAS soon, and so far I did not really find a good practical tutorial on how to develop power bi reports in AAS, or how to move existing pbix datamodels to AAS. ANy recommendation? thank you951Views0likes1Commentsummarize function help DAX
Hi, I have the following calculated column: Green Class A = CALCULATE( COUNTX( SUMMARIZE('product', 'product'[country_code],'product'[ETIM Class],'product'[identifier]),'product'[identifier] ), ALLEXCEPT('product','product'[country_code],'product'[ETIM Class]) ) from product table it calculates the number of identifiers per country and etim class. What I would like to add to this DAX, is that this summarize table should summarize only those values where in a "Green Class" column in product table the value is "A". how can I add that? thanks!Solved868Views0likes1Commentselect column dynamically in dax measure - is it possible?
Hi, In my report I have a separate start and end filter for selecting time period. I have to calculate sellout amount to EUR, by using a sellout column in sales table and the exchange rate from the exchange rate table. The tricky part is, that if Aug 22 is selected, they want everything to be calculated with Aug 22 ex rate. If Jul 22 is selected as end period, they want everything to be calculated on that exchange rate. First I had an ex rate table like this: and it was connected with many to many relationship to the sales table by the country code column. Sales amount was calculated with the help of a lookup function. The disadvantage of the Lookup function is the performance. RELATED function would be much faster, but for that I would need a one to many relationship. Now, what I am trying to do, is that I modified the exchange rate table, pivoted it, so that I have the ex rates in different columns and I can now establish the one to many relationship to the sales table. I can use now the RELATED function, but as each month is in a different column, I would have to add each and every column in the code, in the switch function. (The code always have to use the exchange rate of the selected end period) Is it possible to reference the column name with a measure, instead of adding 50-60 lines of code, each month one by one? It should always use the column name that is identical with the selected end period. Thank you! Sellout Amount EUR test = VAR ex_ratedate = SELECTEDVALUE(Endperiod[yearmonth number]) RETURN SUMX( sales, sales[sellout]* SWITCH( TRUE(), ex_ratedate=202101, RELATED(exchange_rate[202101]), ex_ratedate=202102, RELATED(exchange_rate[202102]), RELATED(exchange_rate[202206])))2.3KViews0likes1Comment
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.