Excel Right VBA Function

Excel Right Function

 

 

The Excel Right VBA function returns a set of characters to the right of a character number that you specify.

Left(ExampleString, length)
 

Example:

Dim ExampleString As String
ExampleString = “ExcelHelp”

Getit = Right(ExampleString, 3)



The Getit variable would return “elp” from "ExcelHelp" since since “elp” are the right 3 characters in the string.

 

 
Sitemap | Privacy | Terms
Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation.
Copyright 2011 ExcelHelp.com All rights reserved
More Info (+)