Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Chart X axis number formatting

Hi,

We have a QlikView document that shows a chart of Values by Week number.

The data is pulled from a SQL view that stores week number as YYYYWW (as in year * 100 + week number)

when plotted to a chart this looks a bit messy, so is there an easy way I can format this number to just show the last two digits (week), and keep the sort order as below?

Capture1.PNG

Thanks

1 Solution

Accepted Solutions
sunny_talwar

May be using Dual function

Dual(Right(YearWeek, 2), YearWeek)

View solution in original post

2 Replies
sunny_talwar

May be using Dual function

Dual(Right(YearWeek, 2), YearWeek)

Anonymous
Not applicable
Author

Thank you Dual solved it, a nice simple solution that saved me hours