Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading last digit in a string

Hi how would I load '2015-08' so that only '8' is displayed ?

Thanks

14 Replies
Anonymous
Not applicable
Author

may be this as well?

=mid(FieldName, len(FieldName)-1, len(FieldName))

PrashantSangle

Hi,

try below


num(SubField(F1,'-',-1))

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Chanty4u
MVP
MVP

try dis

= mid(field, Index(field,'&',-2)+1)

Chanty4u
MVP
MVP

or else

subfield([Source field], '-', -2) as [Destination field]

sasiparupudi1
Master III
Master III

Please try

date(date#(x,'YYYY-MM'),'M')