Thread: #NUM!
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rob van Gelder[_4_] Rob van Gelder[_4_] is offline
external usenet poster
 
Posts: 1,236
Default #NUM!

How about something like:

With Sheets("Sheet1").Range("aj34")
Me.TextBox16.Text = IIf(IsError(.Value), "", .Value)
End With

--
Rob van Gelder - http://www.vangelder.co.nz/excel


"gregork" wrote in message
...
I use the following code for a user form text box value:

Me.TextBox16.Value = Sheets("Sheet1").Range("aj34").Text

Trouble is the cell "aj34" is part of an array formula and can often
return:"#NUM!"
Is there any way I can get a blank in my text box even when the cell

returns
"#NUM!".
As the cell is part of an array I don't think I can stop the "#NUM!"

coming
up on the worksheet.

gregorK