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

How to show category wise distribution.

Test

4 Replies
Anonymous
Not applicable

Dhanunjay,Can you provide sample data??

Kushal_Chawda

=if(wildmatch(lower([Error Text]),'*you can''t use business partner*'),'Invalid Business Partner',

if(wildmatch(lower([Error Text]),'*owner is inactive*'),'Owner is Inactive',

if(wildmatch(lower([Error Text]),'*exception:*'),'Exception in c4c',

if(wildmatch(lower([Error Text]),'*please enter an existing product id*'),'Missing Technology')))) as Category



Edit: syntax error is corrected

Anonymous
Not applicable

Try this

if(WildMatch(Lower([Error Text]),'*business partner*'),'Invalid Business Partner',

if(WildMatch(Lower([Error Text]),'*Owner is Inactive*'),'Owner is Inactive',

if(WildMatch(lower([Error Text]),'*Exception:*'),'Exception in c4c',

if(WildMatch(Lower([Error Text]),'*Please enter an existing product ID*'),'Missing technology'))))

sunny_talwar

Jakhas