View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default If statement not working right

If TaxType = "TRUE" Then
sheet3.Columns("E:E").Select
Selection.EntireColumn.Hidden = True
Sheet3.Range("A2").Select
End If

--
Regards,
Tom Ogilvy

"TimT" wrote in message
...
I have an if statement that if range name "tax_r" = true then column E

should
be hidden.
I believe that there is a problem with my code and I can't see it.

Private Sub Enter_Click()

Worksheets("Intro").Visible = False

Sheet3.Activate
frm_Data.Show vbModeless

Dim TaxType As String
With Worksheets("vlookup")

TaxType = .Range("Tax_r").Value

End With

If TaxType = "TRUE" Then
Columns("E:E").Select
Selection.EntireColumn.Hidden = True
Range("A2").Select
End If


End Sub


Can someone help?