Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
johndoub
Contributor III
Contributor III

master dimension

i would like to create a master dimension that is a list of customers excluding customers with the last name 'SHOPPER'.

what expression should i use?

thanks.

 

john doub

1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

In master dimension, try:

if(wildmatch(customer,'*SHOPPER*'),NULL(),customer)

Uncheck include null values after dragging this master dimension into your table.

 

View solution in original post

2 Replies
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

In master dimension, try:

if(wildmatch(customer,'*SHOPPER*'),NULL(),customer)

Uncheck include null values after dragging this master dimension into your table.

 

johndoub
Contributor III
Contributor III
Author

thanks very much.

that worked.