This Excel tutorial explains how to use the Excel VAL function with syntax and examples.
Let's look at some Excel VAL function examples and explore how to use the VAL function in Excel VBA code:
Description
The Microsoft Excel VAL function accepts a string as input and returns the numbers found in that string.Syntax
The syntax for the Microsoft Excel VAL function is:Val( string )
Parameters or Arguments
string is a string expression.Note
- The VAL function will stop reading the string once it encounters the first non-numeric character. This does not include spaces.
Applies To
The VAL function can be used in the following versions of Microsoft Excel:- Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000
Type of Excel Function
The VAL function can be used in Microsoft Excel as the following type of function:- VBA function (VBA)
Example (as VBA Function)
The VAL function can only be used in VBA code in Microsoft Excel.Let's look at some Excel VAL function examples and explore how to use the VAL function in Excel VBA code:
Val("10 Main Street") Result: 10 Val("34 10 Main Street") Result: 3410 Val(" 34 10 Main Street") Result: 3410 Val(" 34 - 10 Main Street") Result: 34 Val("075") Result: 75For example:
Dim LNumber As Double LNumber = Val("56.2 tables")