For illustration:
1. I create 3 cubes with the same dimensions - Numbers (from 1 to 10), and Numb_Str (with elements - Numb (type is Number) and Strin (type is String)
1) Numb_str
2) Numb_str1
3) Numb_str2
2. I put rules in Numb_str1
Code: Select all
SKIPCHECK;
[ ] = N: DB('Numb_str', !Numbers, !Numb_Str);
[ ] = S: DB('Numb_str', !Numbers, !Numb_Str);
Code: Select all
SKIPCHECK;
[ ] = N: DB('Numb_Str1', !Numbers, !Numb_Str);
[ ] = S: DB('Numb_Str1', !Numbers, !Numb_Str);
The result of calculation you could see next (at left Cube Numb_str, at the middle - Numb_str1, at right - Numb_str2) : So that is the problem with string rule? What I have to do to put String in the third cube?