View Single Post
  #9   Report Post  
Posted to microsoft.public.excel.programming
Steve Jones Steve Jones is offline
external usenet poster
 
Posts: 32
Default Excel 2003 - Showing Userform

Thanks for your answers. I opted for the answer from Jake which worked fine,
I tried the other two answers and for whatever reason I couldn't get either
to work.

Following on from calling the userform, the user then presses a print button
and that runs through a sequence however it keeps "halting" as it keeps
calling the userform.

If I run the userform from a button and then press the print button
everything works as it should.

Where am I going wrong?
"DonB" wrote in message
...
Try this:

If Target.Address = "$B$18" then Call Furn Else Exit Sub

Assuming you are running this inside of
Worksheet_SelectionChange
DonB
-----Original Message-----
Hi

Is it possible to have a userform display (show) on

selection of a specific
cell?

I have come up with the code as below but it shows the

form on everytime I
select any cell and not just "B18".


Private Sub Worksheet_SelectionChange(ByVal Target As

Range)

' Want userform to display on selection of cell B18.
' If any other cell is selected - nothing.

If Range("b18") = ActiveCell Then Call Furn

Else ' "Furn" is UsrFrm.show
If Range("b18") < ActiveCell Then Exit Sub


End Sub

Thanks for your help.

Steve


.