Hello!
I am working to create a style number. If a style has two different colors, it will need two records, but the same style number.
I want the number to start with a certain number unique to the division, then another number unique to the brand, then the third would be a number in sequential order. I have fields for Division, Brand, and Autonumber. I used the below formula.
SWITCH(Division, "DIV1", "2", "DIV2","3", "DIV3", "4", "DIV54,"5",0)
&
SWITCH(Brand,"Brand1","2","Brand2","3","Brand3","4","Brand","5",0)
&
Autonumber
The problem is I can’t use Autonumber because two rows may be the same style but different color. As they are the same style, they need to have the same number. What could I use instead of Autonumber? Possibly the answer isn’t a formula, open to any suggestions.
Thanks!