object variable or with block variable not set

  • Thread starter Thread starter helmekki
  • Start date Start date
H

helmekki

hi

my problem is with bal.value, a message box appears tilling me objec
variable or with block variable not set............the rest of hte cod
works fine

could u pls tell me why is this..........Thank u

Code:

PHP code
-------------------
Private Sub Worksheet_Change(ByVal Target As Range)
Dim T As Range
Dim bal As Range
Set T = Range("I5:BN1000")
bal.Value = Range("F" & Target.Row)

If Not Application.Intersect(Target, T) Is Nothing Then
If ActiveSheet.Range("F" & Target.Row).Value <> "" And _
ActiveSheet.Range("F" & Target.Row).Value <> 0 Then

Beep
MsgBox "imbalanced" & bal
End If
End If
End Su
-------------------



all helps r appreciated :)
yours
 
It looks like you want bal to be a simple variable:

Private Sub Worksheet_Change(ByVal Target As Range)
Dim T As Range
Dim bal As Variant 'what's in column F of that row?
Set T = Range("I5:BN1000")
bal = Range("F" & Target.Row).Value

If Not Application.Intersect(Target, T) Is Nothing Then
If bal <> "" And _
bal <> 0 Then
Beep
MsgBox "imbalanced" & bal
End If
End If
End Sub

bal was already equal to range("F" & target.row).value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top