Hi, I got a datasæt with many rows and a char variable with content of a list of numbers separated by : 41:31: 53:52:32:33:34:35:36:54:53:52:51:61:48:47:46:45:61:62 I need to count and sum the number of specific numbers to create a classification as this: Group1 when number is in(48,47,46,45,44,43,42,41,31,32,33,34,35,36) and I need to sum the found number of string Group2 when number is in(55,54,53,52,51,61,62,63,64,) and I need to sum the found number of string So the result is Group1=11 and Group2=7 Any ideas how to do it ? Thanks in advance.
... View more