Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
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

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

View solution in original post

2 Replies
rubenmarin

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.