chart
33 TopicsAdd Extensible Excel Style "Custom Combo Chart" to Power BI
I would like to suggest the addition of an extensible "Excel Style Combo Chart" feature to Power BI. This feature would allow users to create highly customizable combo charts, similar to those available in Excel. Key functionalities should include: Multiple Series Types: Enable users to add multiple series of any type (e.g., columns, bars, stacked, area, lines, points) within a single chart. Overlay, Order, Opacity: Allow users to overlay different visual types, control the order of series, and adjust the series' opacity to achieve the desired visual effect. Custom Formatting: Provide extensive customization options for each series, including colors, line styles, borders, transparency, markers, and more. This feature would greatly enhance the flexibility and functionality of Power BI visualizations, allowing users to create more complex and informative charts tailored to their specific needs. Indeed, I think if the "Custom Combo Chart" was done well it would eliminate the need to create so many various single purpose charts. Thank you for considering this suggestion.1.1KViews0likes0CommentsDynamic Pareto chart - with field parameters not working
Hello, I have a working Pareto measure with one "sub category" working, but I can't change that to dynamic working with a field parameter here is the measure Pareto % = IF( 1, //ISINSCOPE(par_stop_category[par_stop_category Name]), VAR __AllselectedStops = ALLSELECTED(dim_stop_code[hrm_description]) VAR __StopTable = ADDCOLUMNS(__AllselectedStops, "@Count", [Stops #]) VAR __CurrentCount = [Stops #] VAR __CumStopTable = FILTER(__StopTable, [@Count] >= __CurrentCount) VAR __CumStop = SUMX( __CumStopTable, [@Count]) VAR __AllSelectedStopsCount = CALCULATE([Stops #], __AllselectedStops) VAR __Result = DIVIDE(__CumStop, __AllSelectedStopsCount) RETURN IF(__CurrentCount > 0, __Result, BLANK()) ) my field parameter look like this par_stop_category = { ("Main", NAMEOF('dim_stop_code'[mn_description]), 1,"Main"), ("Harm", NAMEOF('dim_stop_code'[hrm_description]), 0,"Harm"), ("Place", NAMEOF('dim_stop_code'[plc_description]), 2,"Place"), ("Reason", NAMEOF('dim_stop_code'[rsn_description]), 3,"Reason"), ("Code", NAMEOF('dim_stop_code'[code_description]), 5,"Code"), ("Category", NAMEOF('dim_stop_code'[ctgry_description]), -1,"Category"), ("Group", NAMEOF('dim_stop_code'[grp_description]), 1,"Group"), //ERROR ("Error Place", NAMEOF('dim_error_code'[erplc_description]), 8,"Error Place"), ("Error Code", NAMEOF('dim_error_code'[errcd_description]), 9,"Error Code") } both are working fine with themselfes, but when I try to create a dynamic pareto, it's not working any more cause of the error "The ADDCOLUMNS function expects a table expression for argument '', but a string or numeric expression was used." here my dynamic Pareto Measure Pareto % = IF( 1, //ISINSCOPE(par_stop_category[par_stop_category Name]), // VAR __AllselectedStops = ALLSELECTED(dim_stop_code[hrm_description]) VAR __AllselectedStops = SWITCH( SELECTEDVALUE(par_stop_category[par_stop_category Name]), "Main", ALLSELECTED(dim_stop_code[mn_description]), "Harm", ALLSELECTED(dim_stop_code[hrm_description]), "Place", ALLSELECTED(dim_stop_code[plc_description]), "Reason", ALLSELECTED(dim_stop_code[rsn_description]), "Code", ALLSELECTED(dim_stop_code[code_description]), "Category", ALLSELECTED(dim_stop_code[ctgry_description]), "Group", ALLSELECTED(dim_stop_code[mn_description]), "Error Place", ALLSELECTED(dim_error_code[erplc_description]), "Error Code", ALLSELECTED(dim_error_code[errcd_description]) ) VAR __StopTable = ADDCOLUMNS(__AllselectedStops, "@Count", [Stops #]) VAR __CurrentCount = [Stops #] VAR __CumStopTable = FILTER(__StopTable, [@Count] >= __CurrentCount) VAR __CumStop = SUMX( __CumStopTable, [@Count]) VAR __AllSelectedStopsCount = CALCULATE([Stops #], __AllselectedStops) VAR __Result = DIVIDE(__CumStop, __AllSelectedStopsCount) RETURN IF(__CurrentCount > 0, __Result, BLANK()) ) maybe somebody have some good ideas 🙂Solved1.7KViews0likes6CommentsBest choice of custom visual
Hello, I've been asked to prepare a visualisation in line with the following example: I'm somewhat stumped with regards to which custom visual (if any) to pick, and thought to branch out to the wisdom of the Power BI-community 🙂 Any and all assistance in this matter would be greatly appreciated! Best regardsPercentage and Totals in a Stacked Chart
Hello, I have this chart with the sum of the different categories And what I would like to do is have the total (which I already have) and the percentage difference from the previous month. Does anyone know how to show both pieces of information? I want the total for the stacked column and not individual totals.Adding Comments or Text Boxes in a chart
Hey guys, Below is a chart that shows the amount of visits over a period of time: My colleagues would like to be able to add a text box or comment that explain the peaks you can see in the chart. Is there a way to do this? With kind regards, LazzanovaSolved3.4KViews0likes5CommentsUnable to insert charts in report builder : .5in is not a valid unit
Hello, As you can see on the screenshot below, I have an error message when I want to insert a chart uin my report ? ".5in is not a valid unit indicator" The data choosen in my dataset is a valid number (I have already made some matrix inside the report with the same datas). Could you help me ?Solved2.2KViews0likes2CommentsEffect of Filtering a Chart
Hey Community, I am currently working on a report where I use several Charts (Pie Charts, Bar Charts, ..). When I filter on a certain value in another Chart ( Drillthrough) then the charts show the value of the filtered population relative to the whole poulation: But I would like the whole chart to update if a filter is applied by another Chart. So for example if I am filtering for a certain year I want my distribution in that certain year. So something looking like this: How can I achieve this? If you have any questions about what I mean do not hesitate to ask. Thanks!!! JonnySolved469Views0likes1CommentChart showing incorrect month
hi guys , I have a data like below Project Proj Code Creation Date Won Date Lost Date Creation FY Creation FY Month No. Creation Month Won Fy Won Month Won FY Month No. Status Proj1 0001 26 March 2019 18 April 2019 2018-2019 12 March 2019-2020 April 1 Won Proj2 0002 24 September 2019 1 october 2019 2019-2020 6 September 2019-2020 October 7 Won Now to i have to show total projects in different statuses over current fiscal year's months.So below are the measures i have used This year won projects= Var MaxFYYear=MAX('Pipeline Master'[Won FY]) //To give me current fiscal year. Return CALCULATE(DISTINCTCOUNT('Pipeline Master'[Pipeline Code]),FILTER('Pipeline Master','Pipeline Master'[Won FY]=MaxFYYear),'Pipeline Master'[Status (groups)]="Won") Now when i am combining the above measure with "Won Month" column in a chart it shows "March" month too which is not even present in the data.Can you guys please help me why is it happening to me ?Solved1.2KViews0likes1CommentCreating Visual based on running weekly values
Hi all, My brain is pretty much fried trying to think of the logic behind this so hoping somebody may have done something similar or have a good idea how to create the below chart as a chart within Power BI. The above table is currently manually put together within excel. I am trying to replicate it within a report so the manual aspect is taken away. What the business is looking for is a chart which calculates the value of invoices processed during the week (showing as the Actuals per week), this week approvals are jobs awaiting to be invoices and the targets are static. I "currently" don't have an issue actually calcualting the data as I have everthing set to put together. So my question is to see if it is possible to automate this. Is there a way, where if a month was select from a silcer, the weeks within that month are shown (can just be numbered or dated) within the chart and the totals are displayed. For example from above, for Area 1, week 5 of august will be shown tomorrow automatically? Then next month September, week 1 automatically calculate the totals with any invoices created then move onto week 2 after next friday. I originally thought that using CALCUATE based on the current week then -1 week, then -2 etc on the total, it would allow me to get the what I need but this would only allow the report to be run at the end of the month. Is there a way to base the calcualtion on the year week or month week. Apologises if this doesn't make too much sense, as mentioned, I've been looking at this for pretty much 6 hours straight and I've just kept going round in circles. Any help would be greatly appeciated! Thanks!