Excel Macros and VBA Tips

Break Excel VBA Password

1. Create a new simple excel file.

Convert time to a serial value in Microsoft Excel

To covert time into a serial (numerical) value, enter in cell A1: 2342 (this represents the time 23:42)

Enter the following formula in cell B1: =(LEFT(A1,LEN(A1)-2)&":"&RIGHT(A1,2))+0

Learn How to use VBA uBound in Excel

Ok. Lets assume we have a variable called MyVariableTest which is of the data type string.

below is the code...

--------------
'Code starts below

Sub uBoundVBA()

VBA function?

This is going to be a quick tutorial on how would you go about creating a VBA function.

How to do vlookup Using VBA?

If you want to use any Excel function in VBA all that you need to is to use "worksheetfunction" statement follwed with the name of the function.