Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Uygar-Hamburg
Contributor II
Contributor II

Filtering the order number/text

Hi,

How can I set a filter that shows all orders that contain "*XYZ0*" in the order number?

Can I enter this as set analysis in the order number filter?

 

Thank you for your help!

4 Replies
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hello,

Yes you can add a set like below to get only records which contain "*XYZ0*".

E.g 

Sum({<[order number] = {"*XYZ0*"}>}Sales) //Just an example

 

Thanks,

Ashutosh

Uygar-Hamburg
Contributor II
Contributor II
Author

Thank you Ashutosh,

I will put the formula on the measures.

If I want to filter it without set analysis, I think I need to set a filter in the data load editor?

 

AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Yes, you can use condition like

 

Load

A,B,[order number]

From........

where wildmatch([order number],'*XYZ0*');

 

Uygar-Hamburg
Contributor II
Contributor II
Author

Hi Ashutosh,

 

I have tried this formula in the data load editor

 

where wildmatch([order number],'*XYZ0*');

 

but it does not work

Do I need to change something?