Quote (Eagl3s1ght @ Nov 18 2013 06:47pm)
How does the field data look?
Colon separated?
123:456:789
Comma separated?
i,dont,give,enough,information
Random character separated?
maybe_if_i_dont_give_enough_information_more_people_will_help_me_?
There's functions to split (that's actually what it's often called) a string (which is what 123:456:789 would be) into several pieces. You could do something like =SUM( SPLIT( B1, '_' ) ) if the SPLIT function exists in Excel, though I'm not sure that it does (Google it!)
If your field data looks like;
a4cd4222frads55
Then this could help:
http://office.microsoft.com/en-us/excel-help/extracting-numbers-from-alphanumeric-strings-HA001154901.aspxI found that link via GOOGLE.
No, it only includes the value.

But I have only made 1 field for every piece of information (name, price, etc) for all product.
The form lists all the products like this (simple version)
name:_______amount:______price:
product1_____10___________2
product2_____3____________7
etc..
And for that I have only made 1 of each fields (name, amount, price)
This post was edited by eki11 on Nov 18 2013 11:12am