Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
stevejones1
Contributor III
Contributor III

Replacing 20 with FY

Hi

I have year values as 2019 , and 2020 .. i need them to be displayed FY19,FY20 .. using replace function i am getting FYFY for 2020 .. how do i avoid this?

Thanks!

1 Solution

Accepted Solutions
sunny_talwar

May be try this

'FY' & Right(Year, 2) as FYear

View solution in original post

2 Replies
sunny_talwar

May be try this

'FY' & Right(Year, 2) as FYear

shiveshsingh
Master
Master

You can do it by Right function..

'FY' & Right(YearField,2) as YearField