The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have a line and stacked bar chart for months over the course of a year. There are some months where the column value is zero, so by default Power BI removes those columns. I wanted to have all the months on teh chart, so selected to show data with no value, but now the lines on the chart are broken. Is there any way to get Power BI to connect them?
At the end of your measure code, put +0 to avoid broken lines
Both solutions--the new measure and just adding +0 at the end of my formula--worked to make a continuous line. However, I want it to ignore the 0s. The yellow line is supposed to be a target. The formula (after adding the +0 to keep the line connected) is MAX([column with target values for different departments])+0. This should stay consistent over the entire year, not drop to 0 in those months. The red line is supposed to be cumulative number over the year. The formula for it is CALCULATE(COUNTA('Table'[Date], FILTER(ALL('Table', ISONORAFTER('Table'[Date], MAX('Table'[Date], DESC)))+0. Again, since it is cumulative, the line shouldn't drop to 0 when we have no data for a month, it should just stay consistent until we have new value to add on to the running total. How do I get that?
Thank, my cumulative sum line formula that I put above works fine except when I have months where the value is 0. It's not a sum, it's a count of entries. I just need it to ignore when a month has 0 entries and connect the previous month to the next without dipping down to 0.
HI @toniacheung maybe set zero to measure instead blank.
New measure = if(measure is blank();0;measure)
regards.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
80 | |
78 | |
44 | |
39 |
User | Count |
---|---|
150 | |
116 | |
68 | |
64 | |
57 |