Salesforce - Variables & Formulas



The data from the Salesforce objects can be brought into the Visualforce page using variables and expressions. Like other normal programming language, the Visualforce language has expressions, operators and literals, etc. The basic building block of this language is expressions.

The syntax of a Visualforce expression is as below.

{! expression }

Example

Let us use the global variable $user. We can write the following code to get the username, First name and login name.

Visualforce variables expressions

On previewing the output, we get the following details.

Visualforce variables expressions2

Similarly, we can use many other variables and manipulate them using formula as shown in the code below.

Visualforce variables expressions3

On previewing the output, we get the following details.

Visualforce variables expressions4
Advertisements