Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello, i hope everyone is well! Im trying to produce a line chart which cuts off where the red line is.
In May 2024, there is data in there but the data for June 2024 is 0. Is there a way to not show data with a 0 on the line chart?
Thanks!
Solved! Go to Solution.
Hello,
Use this logic for your sum of Actuals
FilteredValue =
IF (
SUM('YourTable'[Value]) = 0,
BLANK(),
SUM('YourTable'[Value])
)
Hi @LukeDurrant - you can try @Alex87 suggested, alternative without creating another measure there is a way by exclude data points with a value of 0 in visual-level filters
For Sum of Actual, set it to "is not 0".
Hope it works
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @LukeDurrant - you can try @Alex87 suggested, alternative without creating another measure there is a way by exclude data points with a value of 0 in visual-level filters
For Sum of Actual, set it to "is not 0".
Hope it works
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hello! This has also got me to the result i needed! Thanks for the help 🙂
Hello,
Use this logic for your sum of Actuals
FilteredValue =
IF (
SUM('YourTable'[Value]) = 0,
BLANK(),
SUM('YourTable'[Value])
)
Hi Alex, exactly what i needed! Thanks for the quick response 🙂
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 44 | |
| 38 | |
| 34 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |