Questions tagged [powerbi-custom-visuals]

Questions about Power BI custom visuals: their development, capabilities and usage. Power BI is a self-service analytics tool. Custom visuals are visualization plugins for Power BI, written in TypeScript or JavaScript using the Custom Visuals SDK.

389 questions
0
votes
1 answer

How to give common title for specific column headers on power bi visual (dashboard page) / report table

I'm trying to create a common header for specific columns on power bi In a normal table, it is not possible but I have tried grid table it is not showing my expected way
0
votes
1 answer

How to create new table and give color coding for difference value by subtraction of today table value from yesterday same table value on PowerBI?

I'm trying to automate creating the difference value table from Today table value and the Yesterday table value and also give color coding for different values in the new table. Yesterday Table EntityType A Count X 23 Y 45 Z …
0
votes
1 answer

How to create week start data and week end date column using power bi for graph visualization?

We have continuous date series data and we have to visualize week start date and week end date wise on chart, how to implement it. My table is
0
votes
1 answer

Unable to select Ribbon chart Y-axis data range on Power BI due to Y-axis config option not available

Plotting issue on Ribbon chart due to configuration issue of Y-axis range Power BI version: My data is What we need is
0
votes
1 answer

PowerBI: How to use TupleFilter with powerbi-client?

I am trying to use TupleFilter in powerbi-client, since I need to filter data based on two different columns with OR statement between them (2 different columns in the same table or may be in 2 different ones), check this question out. As I read in…
Hussein Dahir
  • 395
  • 4
  • 14
0
votes
1 answer

POWER BI - If Calculated columns are saved back into the model and take up space(in import), how do they work in Direct query mode?

Calculated columns in power bi : Evaluated for each row in your table, immediately after you hit 'Enter' to complete the formula Saved back into the model so take up space This happens in Import mode where data is loaded into model, where as in…
0
votes
1 answer

In Power BI X-axis label, how to show only week starting day instead of all date series?

Without grouping date values we need to customize x-axis label values week starting day. One more condition is we need to show all the value points in a week. Right now my chart is And what we need is
0
votes
0 answers

12M Measure total problem in Power BI DAX

I am currently facing an issue with DAX. I have a 12 Months Rolling measure which is used per customer category in a table visual in Power BI. The issue is that the total row displayed is not equal to the sum of the individual rows. I have been…
0
votes
1 answer

Power BI : Filters in What-If parameter

I have a table with multiple company data and having company_id column in it. I want to show the slider with maximum value of selected company_id for ranking feature to the report. I have created a measure to calculate count for the maximum value of…
Wanna Coffee
  • 2,742
  • 7
  • 40
  • 66
0
votes
1 answer

How to create a slicer that filters information if field contains specific values?

I have a column that contains text like the following: Name Type Mark FT Jess FT; #PT Hallon PT Len FT; #PT; #HT Tessa PT; #HT What I'm trying to do is create a slicer that has ONLY three options: FT, PT, HT So if I choose FT, the…
Dana
  • 3
  • 4
0
votes
2 answers

How to create new column in power bi using given string match condition in first column and get value from another column, make new column?

My table is as follow Col1 Col2 11_A 9 12_B 8 13_C 7 14_A 6 15_A 4 The table we need after the query Col1 Col2 Col3 11_A 0 9 12_B 8 0 13_C 7 0 14_A 0 6 15_A 0 4 My query is Col3 = LEFT( 'Table'[Col2],…
0
votes
2 answers

Can't display visual in Power Bi

I'm trying to create a custom visual in Power Bi using Python script. My data source is from my excel file and it load properly. But whenever I will type my script in the python script editor and execute it, it always giving me the same error of…
0
votes
1 answer

Create Bar chart in Power BI as the attahced sample

I need to create the attached graph type with the sample data set attached. Need your super power to resolve this. Thanks in advance.
0
votes
1 answer

PowerBI custom visuals - How to programmatically switch between report pages in a custom visual using PowerBI API?

I need to write a JavaScript click handler for my PowerBI custom visual that once the user clicks on a button in the custom visual this action will switch the currently selected page/tab in the PowerBI report. The page number or page name should be…
AlexRebula
  • 922
  • 2
  • 13
  • 26
0
votes
1 answer

Visual Studio Code giving a schema.pbiviz.json "File not found" error message on automatically generated pbiviz.json file?

I am working through the Power BI custom visual development tutorial by Microsoft. I have followed the steps until the "Developing the visual elements" section and have managed to generate the standard Power BI visual template via the pbiviz new…