Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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 November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 46 | |
| 44 |