It looks like you're new here. If you want to get involved, click one of these buttons!
Table: Testing Set: FirstVar=4 Set: SecondVar=2 Set: ThirdVar=-2 FirstVar={$FirstVar}\n& SecondVar={$SecondVar}\n& ThirdVar={$ThirdVar}\n& FirstVar plus SecondVar={! {$FirstVar} + {$SecondVar} }\n& FirstVar plus ThirdVar={! {$FirstVar} + {$ThirdVar} }\n& FirstVar times SecondVar={! {$FirstVar} * {$SecondVar} }\n& FirstVar times ThirdVar={! {$FirstVar} * {$ThirdVar} }
FirstVar=4 SecondVar=2 ThirdVar=-2 FirstVar plus SecondVar=6 FirstVar plus ThirdVar=(Invalid expression: 4 + -2 ) FirstVar times SecondVar=8 FirstVar times ThirdVar=(Invalid expression: 4 * -2 )
Comments