Unit 2 - D functions Flashcards

1
Q

What are the six D (prefix functions)

A
DLookUp
DAvg
DCount
DMax
DMin
DSum
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does DLookUp do?

A

DLookUp finds what you are looking for within the domain and returns the value of the field or if it does not exist, Null.

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

What does DAvg do?

A

Returns the average of a numeric field,

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

What does DCount do?

A

Returns the number of records or data from a table that matches the given criteria.

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

What does DMax do?

A

DMax returns the largest number in the domain based on the criteria.

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

What does DMin do?

A

DMin returns the smallest number in the domain based on the criteria.

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

What does DSum do?

A

DSum calculates the sum of a set of values in a domain.

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

What are the arguments for the D prefix functions?

A

(Expression, Domain, [Criteria])

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

What is the expression argument in regards to the DLookUp function?

A

The name of the field that that is going to be looked at.

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

What is the domain argument in regards to the DLookUp function?

A

The table or query that holds the data.

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

What is the criteria argument in regards to the DLookUp function?

A

Any restrictions that will be added to the search for the data.

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

How do I add a criteria based on a value in a text box?

A

In the criteria argument close it after the = sign and use “&” to call the text box and follow it by .[Value] to call its value.

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

What needs to be done to a Date value to ensure access knows its a date?

A

Surround it with “#”.

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

When using a D function and you have a string as a the criteria what do you need to do to the string.

A

Surround it in single quotes.

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

When you need multiple criteria what do you add on to the end of the criterion?

A

AND

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