About 5,720 results
Open links in new tab
  1. Convert formula to VBA code - social.msdn.microsoft.com

    Mar 5, 2016 · The WorksheetFunction object makes most of the built-in Microsoft Excel 2010 worksheet functions accessible to you as methods in Visual Basic for Applications (VBA), so …

  2. Adding fields to a recordset - social.msdn.microsoft.com

    Aug 1, 2014 · 1 - Open this View's recordset. 2 - Append CalculatedField to the existing recordset. 3 - Iterate each record of this new recordset to update each CalculatedField record using a …

  3. Enable Filter under Home tab in Protected Worksheet in Excel Vba …

    Nov 5, 2013 · I am using Excel 2007. I protected my worksheet for security reasons. At the same time, even the filter option (under Home tab) also gets disabled.

  4. How to set Rowsource property of a listbox with a filtered range …

    Nov 5, 2012 · As i am new to Excel VBA, I fail to understand how 'lbworkingdays' declared as object in the code which is a quite generic term to take on the properties of list box.

  5. VBA Code to Change vba code in excel 2010 modules as a add-in

    Mar 7, 2013 · I now need to create vba code that will search for several different strings of code in a specfic worksheet and then replace that string with a new one.

  6. VBA-Excel Cell Default Value - social.msdn.microsoft.com

    Jun 2, 2020 · Using VBA, I am running an embedded application within Excel to perform multivariable, linear regression. The name of this application is "ATPVBAEN.XLAM!Regress". …

  7. VBA - Macro that prompt user to select a value from a list

    Aug 16, 2012 · Private Sub CommandButton1_Click () Dim ws As Worksheet Dim rng As Range, aCell As Range Set ws = Sheets ("Sheet1") Set rng = ws.Range ("A1:A3") For Each aCell In …

  8. Access Queries vs SQL run by VBA - social.msdn.microsoft.com

    Sep 17, 2020 · The one other aspect worth noting is the fact that using VBA allow you a certain level of security in the sense that saved queries are accessible and users can run amuck if not …

  9. Access VBA Reference Descriptions and Enumeration

    May 13, 2015 · Is there a place to see the descriptions of the purpose for and type enumerations of reference libraries for Access VBA? Going to the list is minimally helpful, as there are often …

  10. Private Sub Worksheet_Change (ByVal Target As Range)

    Nov 3, 2017 · Private Sub Worksheet_SelectionChange (ByVal Target As Range) If Not Intersect (Range ("I26:N26"), Target) Is Nothing Then Call NameOfYourMacro End If End Sub