Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Sha2009
Contributor
Contributor

How to hide first data point in line graph

Hi

I am using data set with above function to show some aggregate (current month / previous month) and because of this first month there is no data for previous month.  So is there a way I can just avoid displaying first month and show the remaining please

Labels (4)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

You can. You can hide it using conditional color and 'Show Value' control for data label. However, you should not hide it from calculation itself, otherwise your above() expression would not getting it's value for next (unless, you are using aggr() with set analysis to fetch values beyond display).

 

For detailed help, try to share a sample app.

View solution in original post

2 Replies
tresesco
MVP
MVP

You can. You can hide it using conditional color and 'Show Value' control for data label. However, you should not hide it from calculation itself, otherwise your above() expression would not getting it's value for next (unless, you are using aggr() with set analysis to fetch values beyond display).

 

For detailed help, try to share a sample app.

Sha2009
Contributor
Contributor
Author

This worked for me. Thank you