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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
fb987fb
Contributor
Contributor

Standardize text strings upon data load in Qlikview

I'm new at using QlikView, so sorry if this is a stupid question.

I have data in an excel spreadsheet.  I want to standardize some text strings  upon loading the data into Qlik.

Text string examples: 

  • "AMZN 1234-hhh"
  • "AMZN 9977-yy-88-yy"
  • "AMZN abcd"

I want to standardize all text strings that contain "AMZN" to be "Amazon"

Is there a way to accomplish this?

Thanks for the help.

Labels (1)
1 Solution

Accepted Solutions
rubenmarin
MVP
MVP

Hi, for this example it could be something like: If(WildMatch(FieldName,'AMZN*'),'Amazon') as StandarizedText

View solution in original post

2 Replies
rubenmarin
MVP
MVP

Hi, for this example it could be something like: If(WildMatch(FieldName,'AMZN*'),'Amazon') as StandarizedText

fb987fb
Contributor
Contributor
Author

PERFECT!

Thank you for your insight.