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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

Substring

How can I use substring function in edit script in qlikview??

Can anyone give a simple example where substring is used and save it as a new variable in edit script of qlikview model???

2 Replies
suvechha_b
Creator III
Creator III
Author

sorry, need to be added :

use two diifernt field with substring finction and concatenate it to a single variable and den load script...??

please show this type of example...

jolivares
Specialist
Specialist

Examples:

Text1 = QlikView

Mid(Text1,1,4) = Qlik

Mid(Text1,5,4) = View

Mid(Text1,1,4)&Mid(Text1,5,4) = QlikView

Load Mid(Text1,1,4)&Mid(Text1,5,4) as AppQV,

...