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! Learn more
Hi there,
Has anyone faced a situation like this ?? :
I have a average line from Analytics pane, also I selected the option "Show items with no data". The average value is not considering 7 months, just 6.
Thank you,
Ricardo
Solved! Go to Solution.
Hi @ricardocamargos,
Yes, I reproduced your situation. I think this has nothing to do with right or wrong. It's something about how the average line is designed. There could be a workaround.
1. Replace the null value with 0 in the data table.
2. Or modify the measure like this:
Measure = VAR MValue = SUM ( Table1[Column2] ) RETURN IF ( ISBLANK ( MValue ), 0, MValue )
3. If you want the Analysis lines work in another way, please submit or vote an idea here: https://ideas.powerbi.com.
Best Regards!
Dale
Hi @ricardocamargos,
Yes, I reproduced your situation. I think this has nothing to do with right or wrong. It's something about how the average line is designed. There could be a workaround.
1. Replace the null value with 0 in the data table.
2. Or modify the measure like this:
Measure = VAR MValue = SUM ( Table1[Column2] ) RETURN IF ( ISBLANK ( MValue ), 0, MValue )
3. If you want the Analysis lines work in another way, please submit or vote an idea here: https://ideas.powerbi.com.
Best Regards!
Dale
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.