, i am working on a form in Excel (am just beginning VBA)
I have created about 4 or 5 forms and depending on which option is
answered determines which is the next form to open, this all works
fine but the last form i am creating, i only want to appear if the
quantities put in the previous form options exceeds a certain
value. when i type in the code simplified i can get it to work but
when i put it completely it doesnt
eg i want form 8 to open if the sum of cells B6 + B7 + B10 + B14 is
greater than 3.
this code i put in seems to work
if range ("B10").VALUE = 3 Then
frm8th.show
but if i then extend this and put in
if range ("B6+B7+B10+B14).value => 3 then
frm8th.show
this errors and being new to this i really dont know where i'm going
wrong and do i need more coding,