Functions Flashcards

1
Q

Convert to uppercase

A

UCase([String to be converted to uppercase])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Convert to lowercase

A

Lcase([string to be converted to lowercase])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Left trim

A

Ltrim( string to trim)

*removes leading spaces

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Right trim

A

Rtrim(string to trim)

*removes trailing spaces

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Trim

A

Trim(string to trim)

*removes both leading and trailing spaces

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Powerful Case conversion

A

StrConv(string to be converted, conversion type)

o	1: uppercase characters
o	2: lowercase characters
o	3: proper case characters
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Between And

A

Criteria: Between 10 And 30

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Matching/finding names that begin with “John”

A

LIKE”John*”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Matching/finding names that ends with “son”

A

LIKE”*son”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Matching/finding company names that contain “Food”

A

LIKE”food

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

DateDiff

A

DateDiff(interval, date1, date2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

IIF (immediate if)

A

IIF (Expression, TrueAnswer, FalseAnswer)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

IIFDATE

A

IIF(DateDiff(“d”,[Service_date],[Invoice_date]) > 2, “Audit this record”, “Record is OK”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly