Defining Conditions

Conditions are logical expressions that you can use to control the display of fields and sections in your document. Although the following examples apply to fields, they also apply to sections.

You can define conditions for the following field types:

  1. Conditional text: displays text A if the condition is true, or text B if the condition is false.

  2. Hidden text: hides the contents of the field if the condition is true.

  3. Hidden paragraph: hides the paragraph if the condition is true.

  4. Any record and next record: controls the access to database records.

The simplest way to define a condition is to type the logical expression directly in a Condition box using the following values:

TRUE

The condition is always met. You can also enter any value not equal to 0 as the conditional text.

FALSE

The condition is not met. You can also enter the value 0.


Piezīmes ikona

If you leave the Condition box empty, the condition is interpreted as not being met.


When you define a condition, use the same elements for defining a formula, namely comparative operators, mathematical and statistical functions, number formats, variables and constants.

You can use the following types of variables when you define a condition:

  1. Predefined LibreOffice variables that use statistics on document properties

  2. Custom variables, that are a created with the "Set variable" field

  3. Mainīgie, kuri bāzēti uz lietotāja datiem

  4. Variables based on the contents of database fields

You cannot use internal variables, such as page and chapter numbers, in condition expression.

Nosacījumi un mainīgie

The following examples use a variable called "x":

x == 1 or x EQ 1

The condition is true if "x" is equal to 1.

x != 1 or x NEQ 1

The condition is true if "x" does not equal 1.

sinx == 0

The condition is true if "x" is a multiple of pi.


To use comparative operators with strings, the operands must be bounded by double quotation marks:

x == "ABC" or x EQ "ABC"

Checks if variable "x" contains (true) the "ABC" string, or not (false).

x == "" or x EQ ""

or

!x or NOT x

Checks if the variable "x" contains an empty string.


Piezīmes ikona

The "equal" comparative operator must be represented by two equal signs (==) in a condition. For example, if you define a variable "x" with the value of 1, you can enter the condition as x==1.


Lietotāja dati

You can include user data when you define conditions. To change your user data, choose - LibreOffice - User data. User data must be entered in the form of strings. You can query the user data with "==" (EQ), "!=" (NEQ), or "!"(NOT).

The following table lists user data variables and their meanings:

Mainīgais

Nozīme

user_firstname

Vārds

user_lastname

Uzvārds

user_initials

Iniciāļi

user_company

Uzņēmums

user_street

Iela

user_country

Valsts

user_zipcode

Pasta indekss

user_city

Pilsēta

user_title

Titula

user_position

Novietojums

user_tel_work

Uzņēmuma tālruņa numurs

user_tel_home

Mājas tālruņa numurs

user_fax

Faksa numurs

user_email

E-pasta adrese

user_state

State (not in all LibreOffice versions)


For example, to hide a paragraph, text, or a section from a user with a specific initial, such as "LM", enter the condition: user_initials=="LM".

Nosacījumi un datubāzes lauki

You can define conditions for accessing databases, or database fields. For example, you can check the contents of a database field from a condition, or use database fields in logical expressions. The following table lists a few more examples of using databases in conditions:

Piemērs

Nozīme

Database.Table.Company

Database.Table.Company NEQ ""

Database.Table.Company != ""

The condition is true if the COMPANY field is not empty. (In the first example, no operator is required.)

!Database.Table.Company

NOT Database.Table.Company

Database.Table.Company EQ ""

Database.Table.Company ==""

Returns TRUE if the COMPANY field is empty.

Database.Table.Company !="Sun"

Database.Table.Company NEQ "Sun"

Returns TRUE if the current entry in the COMPANY field is not "Sun". (Exclamation sign represents a logical NOT.)

Database.Table.Firstname AND Database.Table.Name

Returns TRUE if the record contains the first and the last name.


Piezīmes ikona

Note the difference between the boolean NOT "!" and the comparative operator not equal "!=" (NEQ).


When you refer to a database field in a condition, use the form Databasename.Tablename.Fieldname. If one of the names contains a character that is an operator, such as a minus sign (-), enclose the name in square brackets, for example, Databasename.[Table-name].Fieldname. Never use spaces inside field names.

Example: Hiding an Empty Database Field

You may want to create a condition that hides an empty field, for example, if the COMPANY field is empty for some of the data records.

Select the Hidden Paragraph list entry, and type the following condition: Addressbook.Addresses.Company EQ ""

or type the following

NOT Addressbook.Addresses.Company

If the COMPANY database field is empty, the condition is true and the paragraph is hidden.

Piezīmes ikona

To display hidden paragraphs on the screen, you can choose - LibreOffice Writer - Formatting Aids, and clear the Fields: Hidden paragraphs check box.


Piemēri nosacījumiem laukos

The following examples use the Conditional text field, although they can be applied to any fields that can be linked to a condition. The syntax used for conditions is also used for the Hidden text, Hidden paragraph, Any record or Next record fields.

To display conditional text based on the number of pages:

  1. Choose Insert - Field - More Fields, and then click the Functions tab.

  2. In the Type list, click "Conditional text".

  3. In the Condition box, type "page == 1".

  4. In the Then box, type "There is only one page".

  5. In the Or box, type "There are several pages".

  6. Click Insert, and then click Close.

To display conditional text based on a user-defined Variable

  1. Choose Insert - Field - More Fields, and then click the Variables tab.

  2. In the Type list, click "Set Variable".

  3. In the Name box, type "Profit".

  4. In the Value box, type "5000".

  5. Klikšķiniet Ievietot.

  6. Click the Functions tab, and click "Conditional text" in the Type list.

  7. In the Condition box, type "Profit < 5000".

  8. In the Then box, type "Target is not met".

  9. In the Or box, type "Target is met".

  10. Klikšķiniet Ievietot.

To edit the contents of the "Profit" variable, double-click the variable field.

To display conditional text based on the contents of a database field:

The first part of this example inserts a space between the "First Name" and "Last Name" fields in a document, and the second part inserts text based on the contents of a field. This example requires that an address data source is registered with LibreOffice.

  1. Choose Insert - Field - More Fields, and then click the Database tab.

  2. In the Type list, click "Mail merge fields".

  3. In the Database selection box, double-click an address book, click "First Name", and then click Insert. Repeat for "Last Name".

  4. In the document, place the cursor between the two fields, press Space, and then return to the Fields dialog:

  5. Click the Functions tab, and then click "Conditional text" in the Type list.

  6. In the Condition box, type: "Addressbook.addresses.firstname".

  7. In the Then box, type a space and leave the Or box blank.

You can now use a condition to insert text based on the contents of the First Name field.

  1. In the Fields dialog, click the Functions tab.

  2. In the Type box, click "Conditional text".

  3. In the Condition box, type: Addressbook.addresses.firstname == "Michael"

  4. In the Then box, type "Dear".

  5. In the Else box, type "Hello".

  6. Klikšķiniet Ievietot.

Please support us!