I have a list of unique ID+count information in a rollup field. See sample data below.
16389-0*4, 70895-0*2, 53429-0*2, .....
Everything before the * is an ID, and the integer following the * is a count for that ID. I would like to strip everything prior to the star, leaving:
4,2,2,....
Then I'd like to sum those values.
Is that possible?