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: 
NavinReddy
Creator II
Creator II

Text value

Hello Dear Experts,

i want to get the data to avoiding brackets data on textbox

i have tried but i'm not able to do it. can some one help me to get the exact answer

Textbox = Total Pricing Exception Rate (BCF1542) %,

Trying to get out put excluding '(BCF1542)' data

Textbox =Total Pricing Exception Rate %

Best Regards,

Niranjan

1 Solution

Accepted Solutions
sunny_talwar

May be this:

=SubField(FieldName, '(', 1) & '%'

or may be this:


=SubField(FieldName, '(', 1) & SubField(FieldName, ')', 2)

View solution in original post

2 Replies
sunny_talwar

May be this:

=SubField(FieldName, '(', 1) & '%'

or may be this:


=SubField(FieldName, '(', 1) & SubField(FieldName, ')', 2)

NavinReddy
Creator II
Creator II
Author

Thank you so muchsunny its working fine