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

Line chart compare PY no need to show last week

I have line chart as attach file, it's compare PY sale.
How should I do if I don't need to show week 52 .

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Or, if your 'last week' is not really last week in the week field but based on data availability, you might use set analysis in the expressions. For specific help, try to share a sample qvw.

View solution in original post

5 Replies
tresesco
MVP
MVP

May be use calculated dimension.

=If(Week<52, Week)

raman_rastogi
Partner - Creator III
Partner - Creator III

Panwipa

You can restrict Week 52 from your dimension

EX- If(Week<>52,Week)

And Suppress Null values

Raman

tresesco
MVP
MVP

Or, if your 'last week' is not really last week in the week field but based on data availability, you might use set analysis in the expressions. For specific help, try to share a sample qvw.

panwipa2528
Contributor III
Contributor III
Author

Thank you

panwipa2528
Contributor III
Contributor III
Author

Thank you