About 50 results
Open links in new tab
  1. VBA Call Function with If Then Statement - MrExcel

    Mar 12, 2022 · So it always places a - and red. When run alone the if/then works fine so it appears to be an issue with my call function. Am I missing an argument for the function? Sub Track () Sheets …

  2. Call a function from another workbook | MrExcel Message Board

    Nov 12, 2007 · the purpose is to call a function (name is repeat) from another workbook wth path('D:\EXcel VBA\practice\trial.xls'). I find the following is successful...

  3. Calling A Function From Button | MrExcel Message Board

    Oct 25, 2016 · Re: Simply Calling A Function From Button - Second Set of Eyes Please OK, something, somewhere is fixed. I cleaned up my code, tweaked a few things, went through each line and .... It …

  4. calling a fuction and passing arguments with .onaction

    Jun 17, 2003 · Duuudes: Have a question for the programmers. I have created a right-click popup menu with vba. On one of the "msoControlButtons" I want the on action procedure to call a function that …

  5. Call a function from an Add-in to a Macro? - MrExcel

    Jun 27, 2014 · I have an add-in (example of 'ADDIN') that is installed in Excel. I have a custom macro that accesses the add-in through VBA to execute subroutines like so (example): Dim oApp As Object …

  6. VBA: Calling a variable subrouting or function? - MrExcel

    Nov 25, 2002 · Is there a way to store the name of a function or subroutine in a string and then call that subroutine based on the name that is stored in that string variable? For example, even though the …

  7. VBA function call from another open workbook - MrExcel

    Apr 14, 2013 · In VBA i am struggling to retrieve the password from the function in workbook 1 I have tried various solutions from the net but unsuccesfully Workbook 2 module dim wbk as Workbook, …

  8. How to call a function in vba when a cell changes eg B1?

    Dec 15, 2009 · Add a worksheet_change event and then check if the cell B1 is the one changed and call your update function procedure. The below code snippit displays message when you change the …

  9. Simple Sub Procedure Call not running - MrExcel

    May 22, 2023 · I am busy on a VBA/ Excel project. Most of everything runs fine and I can step through the code as I debug. However, in the one click event, I call a sub named, Get_Consult. For some …

  10. Call Public Function with parameters from another VBA Project

    Dec 31, 2010 · I use the following function LastRow(sh As Worksheet), that resides in the same VBA project, to find the last row. How can I use the function when it resides in another workbook VBA …