Hi,
I just want to ask how to create a classification for an eVar that takes the currency amount and buckets them into desired groups. For example, $0-$10, $10-$20, $20-$50, etc.
I am having trouble in entering match criteria for each bucket. Could someone please help me with this? Thank you in advance!
Views
Replies
Total Likes
First off, I assume that the currency amount is already in an eVar, not in a success event.
Also, assuming that your eVar's values are stored as Text, then you can use regular expressions in Classification Rule Builder to build your buckets.
So, assuming that your eVar's values are whole numbers like this:
$0
$1
$5
$9
$13
$25
$23490234804243982904
Then the bucket for "$0-$10" would use regular expression ^\$([0-9]|10)$, i.e. match all values that are from $0 to $10, inclusive of those two numbers.
And the bucket for $11 (not $10, because $10 would have been classified in the above "$0-10" bucket) to $20 would use regular expression ^\$(1[1-9]|20)$
And so on.
Thank you @yuhuisg!
These are the sample values for that eVar.
I do also follow your advice to use the regular expression
But as I tested it, 9 was unmatched. This should fall on the bucket $0-$10 right?
Would you please give advice on this too? Thank you in advance! Really appreciate it.
Views
Replies
Total Likes
Views
Replies
Total Likes