Saturday, July 23, 2016

How to use the RIGHT Function (WS,VBA)

Description

The Microsoft Excel RIGHT function extracts a substring from a string starting from the right-most character.

Syntax

The syntax for the RIGHT function in Microsoft Excel is:
RIGHT( text, [number_of_characters] )

Parameters or Arguments

text
The string that you wish to extract from.
number_of_characters
Optional. It indicates the number of characters that you wish to extract starting from the right-most character. If this parameter is omitted, only 1 character is returned.

Applies To

  • Excel 2016, Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000

Type of Function

  • Worksheet function (WS)
  • VBA function (VBA)

Example (as Worksheet Function)

Let's look at some Excel RIGHT function examples and explore how to use the RIGHT function as a worksheet function in Microsoft Excel:
Microsoft Excel
Based on the Excel spreadsheet above, the following RIGHT examples would return:
=RIGHT(A1, 4)
Result: "soup"

=RIGHT("techonthenet", 6)
Result: "thenet"

=RIGHT(A2, 6)
Result: "et.com"

=RIGHT("Excel", 3)
Result: "cel"

=RIGHT("Microsoft")
Result: "t"

Example (as VBA Function)

The RIGHT function can also be used in VBA code in Microsoft Excel.
Let's look at some Excel RIGHT function examples and explore how to use the RIGHT function in Excel VBA code:
Dim LResult As String

LResult = Right("Alphabet",3)
The variable LResult would now contain the value of "bet".

No comments:

Post a Comment