Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I have substr function.
I have part_id(123456_786789) i need after _786789 value how can i get.
For the above you can use
Subfield (part_id,'_',2)
Other string functions
https://help.qlik.com/en-US/sense/3.1/Subsystems/Hub/Content/Scripting/StringFunctions/SubField.htm
Or Mid(part_id, findoneof (part_I'd, '_'))
'_'& SubField(YourFieldName,'_',-1) as YourFieldName
or
as Vineet has suggested..