powerbi

How do you get DimIteration table information from Azure Devops Services into Power BI?

痞子三分冷 提交于 2020-03-05 04:05:16
问题 Our company is transitioning from TFS on-premises to Azure Devops Service so all of our internal team reporting that uses the TFS_Warehouse will no longer work. I am able to pull work item information from analytics views, but do not know how to pull data such as Iteration data (formerly in DimIteration in TFS_Warehouse) into Power BI. Can anyone assist? I'm starting from scratch here with very little knowledge about Azure Devops or using Power BI outside of R scripting or Import queries from

Calculated columns as axis & value

爷,独闯天下 提交于 2020-03-05 02:06:48
问题 I have a bunch of calculated DAX columns that I want to show as a visual. If I use a normal bar chart I get the following image, Barchart 1, where because I do not have any fields in the axis field. The titles of each of the calculated columns are what I want the x-axis to be similar to how it is in the funnel chart below. The funnel chart only requires the value field to be filled in and it creates the following image which is kind of what I want but it needs to be vertical similar to the

Power Bi DAX: Setting a target per week

空扰寡人 提交于 2020-03-05 00:34:12
问题 I have encountered a problem with my data. I had some help with this morning but it would be best to make a new question. Here is the link to the previous question: Power Bi DAX: Divide Value and set it for each week I asked to get a weekly target from my monthly target, needed to divide my target by amount of weeks in a month, which we have figured out. Now my data is showing only for the first of every month because the column where I have put it only has the first of each month as the date

Power Bi DAX: Setting a target per week

最后都变了- 提交于 2020-03-05 00:33:25
问题 I have encountered a problem with my data. I had some help with this morning but it would be best to make a new question. Here is the link to the previous question: Power Bi DAX: Divide Value and set it for each week I asked to get a weekly target from my monthly target, needed to divide my target by amount of weeks in a month, which we have figured out. Now my data is showing only for the first of every month because the column where I have put it only has the first of each month as the date

How to convert Matrix HTML to JSON in Typescript (for sending through api)

£可爱£侵袭症+ 提交于 2020-03-04 23:02:22
问题 I have create the custom Matrix visual with some other features. But now I'm stuck in step to extract the data into JSON and send it through API! Below is its HTML code (although it is matrix but its structure HTML is table). Anyone have ideas how to convert Matrix HTML to Json? and can you please explain it more details! Many thanks for your help! // This is my Matrix have to convert to JSON Northeast Southern California 5 6 Florida 10 15 // Below is HTML structure: <div class="datagrid">

How to refresh report that uses custom functions on Power BI Service using functions?

蹲街弑〆低调 提交于 2020-03-04 21:34:37
问题 Can some one please help me convert this code below in the form of functions so that the code is easy to re use instead of hardcoding the URL's to avoid the error for data source which comes in the current code ? This is with reference to a fix in page How to refresh report that uses custom functions on Power BI Service? page which when in tried works but has lot of repetitive code? BaseUrl = "https://jira.domain.com/rest/api/2/search?jql=project in ('ABC','DEF') AND issuetype = Bug AND

Power Bi DAX: Show data from 6 months past start date

强颜欢笑 提交于 2020-03-04 19:41:26
问题 i have been having trouble trying to figure out how to show my data past a date that is 6 months past the start date. I need to show the values that are after the 6 months past the start date. Each date is different for each person i have the formula as a calculated column for the 6 months: +6m = DATEADD('Employee List'[Emp. Dates].[Date], +6, MONTH) A measure will not work because i cannot apply it to my table as it comes up with an error. How do i get it to work? Should i scrap the +6m

Power BI change original table name which is displayed in Daxstudio

穿精又带淫゛_ 提交于 2020-03-04 18:15:10
问题 I noticed very odd thing that Daxstudio allows you to view original table name. It is a bit niuanse because when you rename table created in M then Daxstudio still refers to it using original table name, not the new name. Here is how to reproduce the bug. Power BI > Home > Enter Data Name the table RedTable . Run a query in Daxstudio: EVALUATE DISTINCT('RedTable'[Column1]) Now rename the table to BlueTable : And run the query in Daxstudio for a new table name: You can still see the original

Counting latest instance of multiple only based on filter context

心已入冬 提交于 2020-02-25 09:49:26
问题 I've got a large table of events that have occurred in an inventory of vehicles, which affect whether they are in service or out of service. I would like to create a measure that would be able to count the number of vehicles in the various inventories at any point in time, based on the events in this table. This table is pulled from a SQL database into an Excel 2016 sheet, and I'm using PowerPivot to try to come up with the DAX measure. Here is some example data event_list : vehicle_id event

AAS tabular model in DirectQuery mode performance benefits

允我心安 提交于 2020-02-25 04:33:18
问题 Suppose you have 10 pretty big fact tables (each 50-100 GBs) that should be queried with Power BI. They doesn't fit into Azure Analysis Services RAM (reasonable price). So in order to use tabular model and AAS you have stay with the following schema: (1) Power BI Desktop -> Azure Analysis Services -> [DirectQuery] -> SQL Database But as far as I know from this article, AAS tabular model doesn't cache any aggregated results (means won't imply any additional performance optimizations). Moreover