power bi data vi̇ew
26 TopicsDate Segmentations based on multiple measures
Hi guys, I need to segment my products into 4 groups all with distinct MIN & MAX ranges as shown below. I am wondering how best to create a dax measure to segment my products into these groups. Furthermore, I need to essentially have the ability to use that Product Type Group Name to be used within the Legend Field of a visuals (Scatter Chart) to visually showcase the sgementation over time. Currently, the scatter chart legend field only accepts colum references and not measures. Any help would be greatly appreciated!!598Views0likes1CommentHow to categorize or label date on a matrix/table ?
Hello! I want to "categorize" date on a matrix/table, just to clean it up and avoid repeating words in the rows. My matrix/table is this, each row is the value of a measure and I have 2 fact tables, INC_table & REQ_table This is my visual currenly, with the values shown per week. And this is how I would like to have as the visual I'm lost and not sure how can thisw be accomplished, If you have any ideas please send them my way Thanks in advance, CarlosSolved1.4KViews0likes3CommentsHow do I create a measure to sum (total) up a distinct count?
Hi guys, As you can see in the picture down below I created a table with different colums: First column [VullingTotaalPerc] shows the percentage of version ID that are filled 100% and so on Second column [Count of Versies.Id] shows the count (distinct) of the total version ID. Third column [TotalVersiesIDCalculate] is a measure that I created that shows the count (distinct) of the total version ID but only for department X. Measure = TotalVersiesidCalculate = calculate(DISTINCTCOUNT(MKA[Versies.Id]),MKA[ProductieAfdeling]="COC2 en I&V") Fourth column [DistinccountVersies.id-Calculated] is a measure that I created that show the count (distinct) of versies.ID. DistinccountVersies.id-Calculated = DISTINCTCOUNT(MKA[Versies.Id]) Fifth column [COC2-Calculated] is a measure that I created - [TotalVersiesIDCalculate] divided by [DistinccountVersies.id-Calculated] to show what the percentage is of the total amount. The problem now is that when I use this formula: [TotalVersiesIDCalculate] / [DistinccountVersies.id-Calculated] the measure will divide 8 with 56 but what I want is that 8 will be divided by the total of 2533. Can anyone help me out here? Thnx!Solved701Views0likes1CommentCreate a new table from another and add new calculations from rows to columns
Hi, I need to create a new set of measures, but they depend of other values in a preexisting source of data. In SQL I managed this by adding CASE sentences to transform a row into a column and then I operated the columns, but in DAX I'm not sure about what is the best option, so I'm guessing that is through a new table with the SWITCH function involved. Let me explain my need: Thanks in advanceSolved931Views0likes2Commentshelp with same user columns in same table
Hi there, Please i need help with how too target a problem like having two user names on the same table. I have an submitted and approved users that have the same data content for instance (please see table below). I also have a user table that gives me the data desciption like the names of these users however, in power bi i can only link the users table to one column (with an active relationship) to my data table. And I linked it to my "submitted user" column which gives me a view as below! Problem: I want to be able to create a table view where I can only have one user column with their respective metrics instead of user submitted and user approved seperately. Please see below of sample data view. sample data table: submitted user approved user entries approved 1001 1001 4 4 1002 1001 5 5 1003 1005 6 5 1004 1010 7 7 1005 1005 8 5 user table (liked to the above sample data table) user Name 1001 Ann 1002 Peter 1003 Christi 1004 Paul 1005 Dan 1010 Will Expected results (would like a single user column with its various aggregates as shown): user name entries approved 1001 Ann 4 9 1002 Peter 5 0 1003 Christi 6 0 1004 Paul 7 0 1005 Dan 8 10 1010 Will 0 7 Is this possible to archieve? and if so please help, thank you.Solved661Views0likes2CommentsViewing Published Dashboards
Hi There, Issue: Please, I need with licensing and report viewing in the server. I had my IT director reach out to me saying members of my organization should be able to view pbi reports published in the server with just my Pro License. Little Summary: I am the sole PBI developer in my tech team with a pro license, and I have developed a few reports and published them on the server. I even created an app to have all of them in a centralized hub. However, I have always known through research (from MS documentation page) the only way another user can view the dashboards I have published (with my pro license) is by obtaining a pro license as well, except I (pbi admin) have a premium capacity subscription. Please, questions for clarification: Because my selected audience isnt that large and we are a small team, we do not need the premium capacity because of cost and all. So, Is it true that with my pro license, members in my org can view the report contents in the server without any pbi subscription? If untrue above, is there another way I can share contents to my selected audience without assigning them a pro license to view the content? I just thought i post this on here for an extra layer of clarification. Please advise. Thank you so much for your help and reference.Solved1.1KViews0likes2CommentsExporting Power BI full Matric Visualization ( including scroll data ) to Power Point / PDF
Dear Folks, We are using Power BI report server to host our reports and finding it really impossible to export Visualization to Power point from PBI RS. Moreover, resolution of Exported pdf file is not so great which also does not include scroll data of Tabular / Matric visualization. Any solution is much appreciated. Many Thanks,856Views0likes2CommentsI want to take the average of the last 3 years of the total number on a monthly and yearly basis
Hi, I have a table like this. And I want to get the second table from this table. I try to use the rollup and sum functions with the filter but I can't find any solution for getting the right amount written in the table to show in a graphic. I wrote something like this but I should get also the next 3 years and the next three years till last year. Summary last 3 years = SUMMARIZE('Summary Incident Yearly' , ROLLUP(ROLLUPGROUP('Summary Incident Yearly'[Country],'Summary Incident Yearly'[MAAND])) , "3 years AVG", CALCULATE( SUM('Summary Incident Yearly'[amount])/3 ,FILTER('Summary Incident Yearly', 'Summary Incident Yearly'[JAAR]>=2015||'Summary Incident Yearly'[JAAR]<=2017)) , "Jaartaal", "15/16/17") JAAR MAAND Country amount 2015 1 Netherlands 1082 2015 1 Belgium 174 2015 1 Belgium 8 2015 1 Luxembourg 1 2015 1 Suriname 15 2015 2 Netherlands 1181 2015 2 Belgium 212 2015 2 Belgium 5 2015 2 Luxembourg 2 2015 2 Suriname 5 2016 1 Netherlands 1244 2016 1 Belgium 259 2016 1 Belgium 23 2016 1 Luxembourg 1 2016 1 Suriname 2 2016 2 Netherlands 1252 2016 2 Belgium 264 2016 2 Belgium 19 2016 2 Luxembourg 2 2016 2 Suriname 4 2017 1 Netherlands 1088 2017 1 Belgium 243 2017 1 Belgium 17 2017 1 Luxembourg 4 2017 2 Netherlands 1054 2017 2 Belgium 288 2017 2 Belgium 15 2017 2 Luxembourg 2 2017 2 Suriname 5 AVG JAAR Maand Country AVG 15/16/17 1 Netherlands 1138 15/16/17 1 Luxembourg 2 15/16/17 1 Belgique 120 15/16/17 2 Netherlands 1162 16/17/18 1 Netherlands etc 16/17/18 1 Luxembourg etc And at the end I will get a graphic like this : Thank you for your helpSolved621Views0likes1CommentSave subtotal in measure and use as dynamic multiplier
Hello all, to illustrate my issue i would like to show the following screenshot As you see i have basically 3 categories of costs which is Picking (here i add up any cost except my storage costs) and the other 2 dimensions are costs for storage&unmoved storage cost. Long story short, i am desperately looking for a way to dynamically save the cost amounts for (Storage & Unmoved) in some kind of measure which is then used to be multiplied by the corresponding "Spread" in any line. It is important to understand that this is just one block of many within my pivot table, which means i have about 100 blocs of Picking | Storage & Unmoved sums, while for any of these blocs i need to find a way to dynamically store its corresponding amount for Storage in a variable which is then used within the lines above to multiply the spread with it. Any help or hint is highly appreciated! Thanks !871Views0likes3CommentsCompare two tables in Power BI
Compare two tables in Power BI I have two tables named TableOne and TableTwo. I want to display a table or matrix in my report that will give me all the towns that are in TableOne, but not in TableTwo. In the example below I want to be able to display the three red tables. Please see the attachment. Thank you in advance.2.4KViews0likes6Comments