Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
hammermill21
Creator III
Creator III

Removing Any Number ending in _R from data in a Dimension

Hello!

I have a dimension of barcode_numbers, but I want to remove any numbers that end in _R and I'm not sure how to do that within a dimension. 

Any ideas?

Thank you 🙂 

Labels (2)
1 Reply
Lisa_P
Employee
Employee

If this is unique combination of characters you could use replace() function to replace '_R' with ''.
Best done in the load script eg
load ...
replace(barcode_numbers, '_R', '') as barcode_numbers
..