Show userform based on cell value

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,223
Office Version
  1. 2007
Platform
  1. Windows
Currently not at my pc but I would like a userform to only be shown if a specific cell is empty.


Would this be correct ?

Please advise.




Code:
[COLOR=#000000][FONT=UICTFontTextStyleBody]If Cell (“B1”) = “” Then[/FONT][/COLOR]
[COLOR=#000000][FONT=UICTFontTextStyleBody]Userform1.Show[/FONT][/COLOR]
[COLOR=#000000][FONT=UICTFontTextStyleBody]Else[/FONT][/COLOR]
[COLOR=#000000][FONT=UICTFontTextStyleBody]Exit sub [/FONT][/COLOR]
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I think it should be,

Code:
[COLOR=#000000][FONT=UICTFontTextStyleBody]Private Sub Worksheet_Activate()
If Range("B1") = "" Then
Userform1.show[/FONT][/COLOR][COLOR=#000000][FONT=UICTFontTextStyleBody]Else[/FONT][/COLOR]
[COLOR=#000000][FONT=UICTFontTextStyleBody]Exit Sub[/FONT][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,443
Members
448,898
Latest member
drewmorgan128

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top