About 50 results
Open links in new tab
  1. How can I speed up Excel VBA? - Stack Overflow

    Nov 3, 2017 · I have an excel file with a VBA code (Not written by me) How this code works is user enters a 6 digit number in a user form, the VBA then checks another sheet and if this 6 …

  2. How to find a value in an excel column by vba code Cells.Find

    Feb 18, 2013 · How to find a value in an excel column by vba code Cells.Find Asked 12 years, 8 months ago Modified 4 years, 5 months ago Viewed 781k times

  3. How to do a "Save As" in vba code, saving my current Excel …

    I have an Excel Workbook that on form button click I want to save a copy of the workbook with the filename being the current date. I keep trying the the following ActiveWorkbook.SaveAs …

  4. Is there a way to crack the password on an Excel VBA Project?

    Jun 22, 2009 · Save the excel file and exit. Now, open the excel file you need to see the VBA code in. The password for the VBA code will simply be 1234 (as in the example I'm showing …

  5. How to continue the code on the next line in VBA - Stack Overflow

    15 In VBA (and VB.NET) the line terminator (carriage return) is used to signal the end of a statement. To break long statements into several lines, you need to Use the line-continuation …

  6. How to convert 32 bit VBA code into 64 bit VBA code

    Mar 2, 2017 · Im trying to run a macro code but since I'm using a 64 bit Excel 2016 this code is not working. Please help me how to fix this. Private Declare Function FindWindowEx Lib …

  7. VBA code to set date format for a specific column as "yyyy-mm-dd"

    VBA code to set date format for a specific column as "yyyy-mm-dd" Asked 13 years, 1 month ago Modified 2 years, 5 months ago Viewed 405k times

  8. vba - How to wait until ActiveWorkbook.RefreshAll finishes before ...

    How to wait until ActiveWorkbook.RefreshAll finishes before executing more code Asked 11 years, 8 months ago Modified 2 years, 6 months ago Viewed 379k times

  9. Is it possible to write Excel VBA Code in Visual Studio

    Feb 21, 2019 · 49 VBA code for Excel can only be written inside Excel using the VBA IDE. VBA projects are stored as part of the Excel file and cannot be loaded into Visual Studio. However, …

  10. What operator is <> in VBA - Stack Overflow

    Oct 21, 2012 · I was studying some vba code and came across this: If DblBalance &lt;&gt; 0 Then I can't figure out what operator this is, any help would be appreciated.