Hi,
I have a table (example below)
I want to create column (called RESULT) which is a sum of columns a,b,c,d,e,
For this purpose I used Formula tool and put there instruction:
[a]+[b]+[c[+[d]+[e]
I received an error 'Type mismatch in operator +'
My assumption is that it is because of data format in a,b,c,d,e (VString and Double).
Can you please help me how to solve this problem?
I do not want to use ToNumber as in my real table I have around 30 columns that I need to add to receive the 'RESULT'
Thanks in advance for your help!
| a | aa | b | bb | c | cc | d | e | RESULT |
| 10 | nn | 1 | ww | 5 | we | 11 | 2 | ? |
| 12 | oo | 2 | ww | 6 | wqw | 11 | 3 | ? |
| 11 | oo | 3 | ww | 7 | wew | 11 | 33 | ? |
| 14 | ooo | 4 | we | 8 | wert | 11 | 22 | ? |