answersLogoWhite

0

In Microsoft Access the function used to create an if, then, else formula is IIf and the format is:

IIf (data to be tested, value if true, value if false). The value if false is optional.

In this example IF the home team and visiting teams scores are equal THEN award 1 point, ELSE award 0 points (for clarity I have deleted the part of the formula that awards 3 points for a win).

PointsHome: IIf([HomeScore]=[VisitorScore],1,0))

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you open database created in Access 2007 in Access 2003?

Access 2003 will not be able to open it properly. What you can do is open it in Access 2007 and save it in the 2003 format. If you do not have Access 2007, you will need to get someone else to do it for you. It may still lose some of the data and elements that are in Access 2007 but not in Access 2003.


Is it possible to use multiple else statements with if statements?

yes


If your copy of Windows was not found to be genuine would you still have access to all the updates and downloads available through Microsoft?

Nope. In effect, you have a stolen copy of someone else's property. Microsoft did not get paid for their property. To allow you access to updates would be to allow you to continue to steal from them.


What is the similarity between 'if' statement ans 'switch' statement?

A Switch statement can be considered as a series of if. else if. else statements. whatever condition is satisfied, the code block would get executed. if (cond 1) { } else if (cond 2) { } else if (cond 3) { } ...... } else if (cond N) { } else { } switch { case 1: .... case 2: .... .... case N: ... default: ... } Difference: In the if else blocks, if one condition is satisfied, all other blocks are ignored In Switch blocks, unless you have break statements inside each condition block, the subsequent blocks would not be ignored.


Where else do people use Microsoft word?

Worldwide. Nowhere else


Who can take bank statements?

People who own the bank accounts or people working in the bank or federal officers can access the statements on bank accounts. Apart from these people, no one else can access the bank records of a person. It is protected information and cannot be gained access by anyone. For that matter, even bank employees and federal officers cannot see any account they want at their wish. There needs to be some reason for them to do so.


What is else if in C programming language?

Statements. Typical usage: if (<condition>) <statement>; else <statement>;


What is ladderized if else if conditional statement?

if(condition) { statements /* ... */ }


What are negative statements?

Cursing, and anything else that puts someone down.


How To close a Table in Microsoft Access?

Well, the big X in the top right of the screen could be helpful. If you want to close the table and STAY in the program you need to ask someone else who has heard of the program.


Where would you work if you were a computer engineer?

At Microsoft or somewhere else


What is the difference between ternary operators and if-else statement?

ternary is a single statement operator while even the most primary form of if else contains an if and an else statement. ternary only returns a value but if else can be used to do a lot of other things like printing, assigning values or just returning true or false.