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: 
Anonymous
Not applicable

Issue Regarding Violated Column in Excel

I have a CSV File in which last Row is violated, ScreenShot is being Attached Below. 

How can i remove 3 semicolons using StringHandling.ERREPLACE() i.e.

which syntax will be use to remove 3 semicolons ";;;" using StringHandling.ERREPLACE().

0683p000009LxG9.pngTotal_Calls row is Violated by three semicolons

Labels (3)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@meetmahajan,can you use below funtion in tMap.

 

row1.total.replace(";","")

row1.total.replaceAll(";","")

View solution in original post

3 Replies
manodwhb
Champion II
Champion II

@meetmahajan,can you use below funtion in tMap.

 

row1.total.replace(";","")

row1.total.replaceAll(";","")

TRF
Champion II
Champion II

Try StringHandling.ERREPLACE(yourString, ";;;$", "") or StringHandling.ERREPLACE(yourString, "\;\;\;$", "")
Anonymous
Not applicable
Author

@manodwhb @TRF

Thank you so much 

Both Method Works very Well 🙂0683p000009LxM6.png