Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names

Capture.PNG

6 Replies
Anil_Babu_Samineni

What are the sult and Re in your values? Where this data coming from. Would you explain little more

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
tajmohamed30
Creator III
Creator III

hi Harasawa,

give a try at the below link

Replace function: Find Multiple strings and replace to blank

vishsaggi
Champion III
Champion III

Try these in your Load script where you getting those field names

LOAD ....,

        IF(NOT Match(Year, 'sult'), Year)                         AS NewYear,

        IF(NOT Match(MonthNames, 're'), MonthNames) AS Month

FROM yousource;

Not applicable
Author

I believe it is from this. This is at the very end but has no values

jjk.PNG

vishsaggi
Champion III
Champion III

Can you share your actual script for those fieldnames?

Anonymous
Not applicable
Author

You'll want to remove those records from your data.  I'm guessing besides your month and year filters you have an extra 'results' row that doesn't belong.

In your script you'll want to add a where clause to remove it.

Something like

Load *

From YourFile

where not wildmatch(Month,'Res')

;