View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default TextBox1.value=TextBox2.value-(TextBox3.value+TextBox4.value)

textbox1.value = format(cdbl(textbox2.value) _
-(cdbl(textbox3.value)+cdbl(textbox4.value)),"000.0 0")



helmekki wrote:

hi all

TextBox1.value=TextBox2.value- (TextBox3.value+TextBox4.value)

how to make this works in a code?

And the TextBox1 should show the result of the formula........

yours
h

--
helmekki

------------------------------------------------------------------------
helmekki's Profile: http://www.excelforum.com/member.php...fo&userid=6939
View this thread: http://www.excelforum.com/showthread...hreadid=269094


--

Dave Peterson