ANYONE CAN HELP ME ?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I have one field.text with F = "(2*V)+30". In another table I have the value of V = 50 . Then HOW I CAN TO HAVE R = F, getting R = 130 . All aid I thanks :((
Following order of operations you should get 130: 1. V = 50 2. (2 * V) = 100 3. 100 + 30 = 130 There is nothing wrong with that statement, it should evaluate to 130. Hope this helps, let me know. Nick Parker