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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

TRIM

Hi,

I need to show the below link in the qvw.I have used the pivot table.

When i import the field into table it gives full as below

Retail Employee GAP Report<URL>\\test.com\public\Scorecard Backups\Retail Employee GAP Report

But here i need only the link \test.com\public\Scorecard Backups\Retail Employee GAP Report

Let me know how to get this.

Thanks..

1 Solution

Accepted Solutions
Anonymous
Not applicable

Try this:

Right([YourField],len([YourField]) - len(SubField([YourField],'\\',1)))

View solution in original post

6 Replies
Anonymous
Not applicable

The string you get is this?

Retail Employee GAP Report<URL>\\test.com\public\Scorecard Backups\Retail Employee GAP Report

nareshthavidishetty
Creator III
Creator III
Author

yes..

I need only this '\\test.com\public\Scorecard Backups\Retail Employee GAP Report

Thanks..

'

Anonymous
Not applicable

Try this:

Right([YourField],len([YourField]) - len(SubField([YourField],'\\',1)))

nareshthavidishetty
Creator III
Creator III
Author

Can i have explanation..

Anonymous
Not applicable

You want me to explain?

m_woolf
Master II
Master II

This might be a little simpler:

subfield(YourField,'>',2)