Need help with formula for array. For example:
Given a string like this,
"1;1500;3804^^0.757;2200;2880"
I'd like to stuff 3804 and 2880 in the array and then sum those numbers.
I want to split the string by the '^^' character, then split the element by the ';' and take the 3rd element. There could be more than two elements when splitting by '^^', but always only 3 ';' within that element.
Sorry if this is confusing. Thanks for the help.
Given a string like this,
"1;1500;3804^^0.757;2200;2880"
I'd like to stuff 3804 and 2880 in the array and then sum those numbers.
I want to split the string by the '^^' character, then split the element by the ';' and take the 3rd element. There could be more than two elements when splitting by '^^', but always only 3 ';' within that element.
Sorry if this is confusing. Thanks for the help.