Selecting Cells While Userform Is Open

Jul 5, 2006

I have created a userform to get cells from the user using the selection property. The userform is supposed to do the following: prompt the user to select the first range. When the OK button is clicked, the selected range is stored to the variable first_range. Then the userform prompts the user to select the second range, and stores the selected range to second_range once the OK button is clicked. My problem is that I am unable to select cells while my userform is open. Is there a userform property allowing one to select cells while a userform is open?

View 8 Replies


ADVERTISEMENT

Open 2nd Workbook From Userform Then Close 2nd Userform?

Jul 4, 2012

What I would like to do is to be able to open a second workbook from a user form, preform some work on it then save and come back to the same place in the original user form.

So in steps:

1 : user clicks command button to open user form
2: user then clicks on command button on userform that opens 2nd workbook via a yes / no message box, but closes userform on 1st workbook (would be ideal if this could stay open, but hidden)
3: user then does work on 2nd workbook,
4: userform on 2nd workbook saves then activates the 1st workbook and reopens the userform

This is where no matter what I try I cant get the command button on the 1st userform to be clicked automatically so the yes / no message box appears.

This is part of the code in the 2nd sheet commandbutton that saves / closes / opens

Code:
Unload Me
ActiveWorkbook.save
Windows("ABC.xlsm").Activate
Sheets("Request Sheet").Activate
Call Sheets("Request Sheet").ForceClickOnBouttonXYZ
Call UserForm1.CommandButton6_Click 'this is where I cant get it to work!!
Windows("xyz.xlsm").Close
ABC is the 1st workbook
xyz is the 2nd workbook

This is the code on the 1st workbook I use to call on the 2nd workbook

Code:
Public Sub ForceClickOnBouttonXYZ() Call CommandButton1_Click End Sub

View 7 Replies View Related

VBA To Close Userform Upon Selecting A Toggle Button And Then Running Another Macro

Feb 17, 2014

I have this VBA set for a workbook_open event:

Public Sub Workbook_Open()
PromotionOrNewHireForm.Show
Sheet1.Select
End Sub

...which works, but I would prefer to have the form hide (or unload, exit, etc.) once the toggle button in that userform is first selected. I've tried a few things but none of them have worked. BTW, the userform has two toggle buttons, which run the following:

Private Sub ToggleButton1_Click()
Worksheets("Sheet1").Range("A4").Value = "Promotion"
End Sub
Private Sub ToggleButton2_Click()
Worksheets("Sheet1").Range("A4").Value = "New Hire"
End Sub

Also, once it closes, I'd like it to move on to the next macro depending on whether "Promotion" or "New Hire" is selected. Not sure if a workbook_change event is the best way to handle that.

View 1 Replies View Related

Open Msg Box And Userform With 1 Button

Sep 30, 2008

I have a spreadsheet with a userform for inputing and deleting vehicles onto a spreadsheet, these are working fine,,,,

Before I try and figure it out, can 1 button be used to open a msg box and the userform at the same time

View 2 Replies View Related

Open Files Using A Userform

Jan 10, 2009

What I am trying to do is set up a few command buttons on my userform that will allow the user to open a specific folder, browse, and then open the file of their choice.

Is this possible?

View 14 Replies View Related

Userform And Other Workbooks Open

Dec 28, 2009

I have an excel sheet that has a userform on, when this is open my users are required to cross reference with another excel sheet they have just typed up to make sure they enter the right information into the userform. The only problem i have is, when the userform is open my users cant access any other excel workbooks.

View 2 Replies View Related

Leave Open A Userform?

Jan 20, 2010

is it possible to have some sort of form that stays on top and is showing a total price as the user is working? It would have to move down the screen as the user moves down also. I dont have the workbook started, just needed to know if its possible and if so, of course, how to do it!

View 2 Replies View Related

Open UserForm From Module

Oct 25, 2012

I have a Sub() in a module that sends an email to address that it retrieves from a spreadsheet.

See portion of code below

HTML Code:
Do
vaRecipient = Application.InputBox( _
Prompt:="Please add the name of the recipient such as:" & vbCrLf _
& "excel@microsoft.com or just the Staff ID.", _
Title:="Recepient", Default:=Range("I" & vaRow).Value)
Loop While vaRecipient = ""

[Code] .......

This is basically showing 3 popup boxes one after the other to verify each address,

Is it possible to either have it show an input box with 3 fields or ( what I'm currently trying) is to show a Userform . I have tried Userform12.show but it isnt working.

View 2 Replies View Related

Show Userform On Workbook Open

Dec 7, 2009

This is the code I received for showing a userform upon open...but it's not working.

View 10 Replies View Related

Open Userform And Hide Application

Jan 31, 2014

I have got a Useform. I want on Sheet1 when i click on Userform button to open it ; then excel application should be hide and only userform should be show.

I do not want it on startup.

I have attached Excel worksheet with userform.

View 2 Replies View Related

Open Userform In Workbook1 From Workbook2?

Feb 6, 2014

Basically I have a user form that opens up another workbook file. and then hide the user form. Now what I owuld like to do is have a button on the worksheet that will recall the userform and close the workbook.

The user form is frmUsreDataSheet It is in VBAProject(UserformExample.xlsm)

The file or workbook that gets opened is VBAProject(FSO Open Report.xlsx)

I searched the web and there seems to be a lot of conflict about whether it can be done. Some suggestion you create a reference in the FBAProject that houses the userform, and then create a code that references or something like that.

Oh and not sure if I should be using an Activex button or a form control button. but the button will exist on the worksheet.

View 14 Replies View Related

Open Userform When You Close A Spreadsheet

Mar 5, 2007

I've got a 'Control Panel' spreadsheet which is all based on UserForms. When a user clicks a particular button, it opens one of many separate 'Regional' sheets which they work in.

When the user closes the 'Regional' sheet, I would like the 'Control Panel' sheets userforms to show again. However I can find no way of doing this as it simply switches back to the 'Control Panel' sheet without loading the forms (as I had to hide the 'Control Panel' useforms to give them access to the 'Regional' sheet).

View 9 Replies View Related

Suspend A Userform After Open A File

Oct 27, 2008

Can you suspend a userform after open an excel file from the userform? I have a userform that allows the opening of excel files (one at a time), but the user has to close the userform to access the excel file. Can I work with the file while the userform is still active?

View 2 Replies View Related

Open/Show A Userform With A Hyperlink

Feb 1, 2007

Can a hyperlink (in a worksheet cell) be used to open/show a userform?

View 9 Replies View Related

Become The Active Cell Than The Userform Is To Open Up

Mar 31, 2007

I have created a user form that has 6 input boxs and at the bottom of the userform has a seventh box that has a running total. I have two buttons one to "accept" and one to "cancel". My prloblem is creating the code to make it work correctly.

1) if a cell in B5:B20 become the active cell than the userform is to open up.
2) once the useform is open the user can input up to six different numbers into the input box's which will show the runinng total in the seventh box.
3) Once all numbers are inputed into the input box's the user can hit "accept" to post the total into the active cell or hit "cancel" and nothing have nothing happen.

View 9 Replies View Related

UserForm-trying To Open With A Button Click

Nov 8, 2002

I have a User Form that I am trying to open with a button click. I made a copy of one workbook with a new name. The Buttons and Macros were all copied as well. I modified the old Userform so that I can release Version 2 of the Userform, and now when I click on the button in Excel, I get the following error : Object doesn't support this property or method. Run-Time error '438'.

The code assigned to that button is as follows:

Sub Button121_Click()
'
' Button121_Click Macro
' Macro recorded 8/11/2002 by Kale Mayfield

'
UserForm1.Show

End Sub

What am I doing wrong? HELP! Once you have the Userform populated with ComboBoxes,Textboxes, etc., is there now way of making changes to that Userform? If you make changes and rearrange the locations of the buttons and boxes and labels... does that mess up the button in Excel that opens the form to begin with?

View 9 Replies View Related

Open Userform When File Is Opened

Dec 15, 2008

I have a Userform in Excel.

My requirement, is whenever I open the Excel file, it should open the userform and should not show the excel file at all. And the form is closed, the excel file should be saved and closed.

Also, I need the minimize button on the form and in the taskbar, it should not display the Excel file, it should display only the Userform.

View 9 Replies View Related

Populate UserForm TxtFields On First Open.

Jul 7, 2006

Worksheet1 has data, with a cmdButton that opens a UserForm. When the UserForm opens, some txtFields(in the UserForm) are populated based on the data from Worksheet1. The issue is, if we change the data on the worksheet1, we have to open and close and open the UserForm to have the txtFields populated.

View 7 Replies View Related

DblClick Event To Open Another UserForm

Jul 20, 2006

How can I use a ComboBox Dbl_Click event to open another UserForm ??? The event exists, but how it works ???

View 5 Replies View Related

Keep UserForm Visible While Other Workbooks Are Open

Oct 15, 2006

I have a workbook with 'Application.Visible = False' in the 'Workbook
open' event, as well as 'Userform1.show'. The relevant Desktop shortcut
is set up for the application to run 'Minimized' and to start in
"C:Program FilesMicrosoft OfficeOFFICE11".

In this manner, when the shortcut is Dbl clicked, the userform appears
with no visible evidence of Excel having been started. The
application.visible attribute is reset in the 'workbook close' event
with :"Application visible = true.

All of this works extremely well, however wilst previously opened
workbooks remain open and visible when I start this workbook, while the
workbook is opened I an unable to start any other excel workbook via
their shortcuts. I can however start a new instance of Excel then
browse to the workbook to open it.

MY QUESTION: How do I allow users to start any of their Excel
workbooks via their shortcuts while my application is running and the
userform showing?

View 6 Replies View Related

Open Workbook Window On Top Of UserForm

Mar 13, 2008

I have a userform with several buttons on, each doing seperate tasks, three of the buttons however are used to load a workbook stored elsewhere in our central data storage drive. Loading these workbooks is not the problem, the problem is when loading these they load up behind the userform and not in a new window.

View 6 Replies View Related

Work In Spreadsheet While Userform Is Open

Mar 20, 2008

Problem: I have textbox entries that are part of a Userform that opens using a macro on a speadsheet button. Once this form is open, I can no longer actively work in the spreadsheets.

Need: I need a way to minimize or "put on hold" the Userform so that I can freely move around in the spreadsheet. This could be in the form of a button on the Userform. Then, I need a way to bring back this userform to the point I was at before being put on hold so that I can continue to input entries into the textboxes (again, a buttton that could bring it back). There should be a way to toggle between both worlds.

View 2 Replies View Related

VBA UserForm That Searches And Reads Open Worksheets?

Dec 24, 2013

Develop one system that can search and make changes on the user form. I already find the solution on my first worksheet(USER PROFILE) but when i used the same coding on my second worksheet(INVENTORY&RET), it doesnt work. Here is the example of my INVENTORY&RET worksheet example.xlsm

Hit MAKE CHANGE button to see the problem.

View 2 Replies View Related

Open Another Workbook For Multiple Userform Event Use.

Sep 12, 2009

The use of this userform is to find a customer reference number. Im using two combobox's and a textbox.value that are populated from another workbook.

Though the way it is at the moment it opens the workbook and closes the workbook every time a new value is set to one of the combobox's.

I want to open the workbook on the useform initialize and do everthink the useform need from it. And then on the userform terminate close the workbook. Or somehink to this equlivent so this process of finding the customer referance number goes faster.

View 6 Replies View Related

Use Userform Collected Data To Open A File

Oct 29, 2009

Hi, I'm trying to use a userform to open a previously saved file to avoid having the users dig through the folder and maybe work on the wrong file.

I have a file I have created to test if the code works, but the macro keeps giving me the reponse I set in case it doesn't find the file.

The data for Account (Account1 and Subaccount1) is coming from a text box, as well as for category (Category1). The data for Company is an optionbutton frame with 4 options for the user to select from.

View 6 Replies View Related

Userform To Always Open In Center Of Excel Screen?

Apr 5, 2010

Is there any way to tell a userform to always open in the center of the excel screen? It always seems to open somewhere in outer space on multiple screen setups.

View 9 Replies View Related

Change Toggle Button Value On Userform Open

Dec 6, 2011

I would like to set the value of a toggle button when the userform is opened so that it coincides with the what columns are hidden on screen. Below is simple example which I have not tested or debugged. It was just what i was thinking.

VBA code

Sub Macro2()
'if col A is hidden
If Columns("A").EntireColumn.Hidden = True Then
'make hidecalcs toggle button true (sunken)
Userform1.HideCalcs.Value = True

[Code]....

View 2 Replies View Related

Open Userform Based On Combobox Selection?

Feb 20, 2012

I have a series of cascading comboboxes on a sheet named report. In the first combo box,cboCategory, the user will have the option of selecting New, Existing, 401k, CPA Information. If the user selects CPA Information I need a user form named CPA to open.

View 4 Replies View Related

Open Userform On Specific Cell Selection

Nov 3, 2009

What am I missing here? I followed http://www.fontstuff.com/vba/vbatut07.htm and I have this code but nothing happens when I click on 'M6'.

Private Sub Calendar1_Click()
ActiveCell.Value = Calendar1.Value
Unload Me
End Sub

Private Sub cmdClose_Click()
Unload Me
End Sub

Private Sub UserForm_Initialize()
If IsDate(ActiveCell.Value) Then
Calendar1.Value = DateValue(ActiveCell.Value)
Else
Calendar1.Value = Date...............

View 5 Replies View Related

Work With Main Interface While Userform Is Open

Jul 18, 2007

I'm writing a program on VBA for Excel and I've succeeded in just displaying the Userform when opening the file. I have set the ActiveWindow.Visible option to False and the Application.Visible one to false as well so that i only have the user form displayed.

However, if i try to open an excel file via "My Computer", the file doesn't open. I also noticed that when I was leaving the application.visible option to True, i couldn't access the application while the userform was running. I think i need to do something with an event, but i can't find the event corresponding to opening a file oustide Excel.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved