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

Creating dimension with "IF" "AND" conditions

hi

i want to create a dimension using "If" "And"

the dimension needs to answer two criteria

prodpoolid=20

itemid starts with 5c

if both conditions are true than i want to make a dimension called "valve"

thanks.

1 Solution

Accepted Solutions
pathiqvd
Creator III
Creator III

hi,

Try Like this,

=if(prodpoolid=20 and wildMatch(itemid,'5c*'),valve)

Regards,

View solution in original post

2 Replies
pathiqvd
Creator III
Creator III

hi,

Try Like this,

=if(prodpoolid=20 and wildMatch(itemid,'5c*'),valve)

Regards,

avishaiz
Contributor III
Contributor III
Author

thanx