$$Excel-Macros$$ Code in Workbook_Open macro inadvertently crashes the file!!!

2016-03-18 Thread Rob Flott
Mayday MaydayI need help My workbook contains several sheets displaying various report forms. The content of each report is based on the selections made from a UserForm. On the Workbook_Open macro I have 'Call OpenUF1' code to open the UserForm. Sub OpenUF1() Load UserForm1 UserFo

$$Excel-Macros$$ VB Code to open a worksheet based on a list of worksheet names

2016-01-12 Thread Rob Flott
I have a workbook with nearly 200 worksheets. Each worksheet is named for a specific retailer. Included in this workbook is a sheet listing 75 of these retailers. I want to create the VB code that opens the sheet with the list of 75 retailers, selects the name and then finds the corresponding s

$$Excel-Macros$$ Why does my sheet tab 'calculate' if there are no formulas on the tab?

2015-07-30 Thread Rob Flott
Why does my sheet tab calculate if there are no formulas on the tab, or even on the workbook? I am using Excel 2010 and my workbook has 3 tabs; each with about 3400 rows and about 30 columns of data. Every time I sort the data, down in the status bar it shows 'Calculating (4 Processors)' .

Re: $$Excel-Macros$$ Need help with Run Time Error 424 "Object required"

2014-12-16 Thread Rob Flott
d this error.. > > cheers > > + > *I did not do this for you. God is here working through me for you.* > > On Fri, Dec 12, 2014 at 1:03 AM, Rob Flott > wrote: >> >> On a worksheet I have two listboxes; ListBox1 and ListBox3. Dependant >> upon what is selected

$$Excel-Macros$$ Need help with Run Time Error 424 "Object required"

2014-12-11 Thread Rob Flott
On a worksheet I have two listboxes; ListBox1 and ListBox3. Dependant upon what is selected in ListBox1...it will automatically enter the appropriate range into the ListFillRange of ListBox3: Private Sub ListBox1_Click() With ListBox3 .ListFillRange = Sheets(2).Range("T30") .S

$$Excel-Macros$$ How to remove vb code after you make a copy

2014-06-26 Thread Rob Flott
My application allows the user to make a copy of a worksheet so it can be viewed outside of the application. The problem I have with this is the code written to that specific worksheet. Is there code I can include in the 'make copy' macro that would remove all VB code associated to that sheet

$$Excel-Macros$$ Is there any way to change the font with the Forms - ListBox?

2014-04-29 Thread Rob Flott
For whatever reasons the size of my ActiveX ListBox expands and shrinks on an inconsistent basis forcing me to use the Forms ListBox instead. The problem I have with the Forms ListBox is the small font. 1. Is there any way to change the font size within the Forms - ListBox? 2. If not, is the

$$Excel-Macros$$ Code that passively identifies users who opened a workbook

2014-03-25 Thread Rob Flott
I am trying to determine the code that would (passively) record the users, within our company, who are using a selected workbook. Is this feasible and if so how do I write it. Thank you, Rob -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) !

Re: $$Excel-Macros$$ How to copy a series of ranges from one worksheet to another

2014-03-07 Thread Rob Flott
; Result(k, 1) = Data(j - 1, 2) > k = k + 1 > Next > End If > Next > Sheet3.Range("A5").Resize(k, 2) = Result > End Sub > > > Rgds, > [dp] > > > On 21-02-2014 5:10, Rob Flott wrote: > >

Re: $$Excel-Macros$$ Re: ListFillRange Property of ActiveX ListBox

2014-01-26 Thread Rob Flott
Ricardo, Thank you very much, I really appreciate your help. Rob On Fri, Jan 24, 2014 at 7:15 PM, Ricardo® wrote: > Hi Rob, > To solve the problem of error, you can delete this ( > Sheets("List3").Select ), it will not affect the main macro. > > Basole >

Re: $$Excel-Macros$$ Re: ListFillRange Property of ActiveX ListBox

2014-01-24 Thread Rob Flott
sage? Thank you for your help with this. Rob On Thu, Jan 23, 2014 at 2:21 AM, Anoop K Sharma wrote: > Hi Rob, > > Please have look at attached one... > > > On Thu, Jan 23, 2014 at 6:48 AM, Rob Flott wrote: > >> >> >> On Wednesday, January 22, 2014 3:36:1

$$Excel-Macros$$ Re: ListFillRange Property of ActiveX ListBox

2014-01-22 Thread Rob Flott
On Wednesday, January 22, 2014 3:36:19 PM UTC-8, Rob Flott wrote: > > Using MS Excel 2010 I have an ActiveX ListBox and want to load a range of > names. This range will vary, and I have a Named Cell that identifies the > range. For example the range of names in one example is A3

$$Excel-Macros$$ Re: ListFillRange Property of ActiveX ListBox

2014-01-22 Thread Rob Flott
On Wednesday, January 22, 2014 3:36:19 PM UTC-8, Rob Flott wrote: > > Using MS Excel 2010 I have an ActiveX ListBox and want to load a range of > names. This range will vary, and I have a Named Cell that identifies the > range. For example the range of names in one example is A3

$$Excel-Macros$$ ListFillRange Property of ActiveX ListBox

2014-01-22 Thread Rob Flott
Using MS Excel 2010 I have an ActiveX ListBox and want to load a range of names. This range will vary, and I have a Named Cell that identifies the range. For example the range of names in one example is A3:A8. But in another example that range could be A3: A21. I would like the ListBox to l