I have an Access 2000 database that I am trying to set up a query for....specifics aside, I need to know what the syntax is for pulling records out of the current field. Ex:
Push a button on a form that runs a macro.
The macro runs a series of if/then statements that accomplish this:
6 fields, all yes/no. For example, they are a, b, c, d, e, and f.
Only one box has a value of "yes".
there is another field called "type"
if field "a" in the particular record is set to "Yes", the "type" field of that record would be set to "a" when the macro is run.
This is sorta the flow im tryin to accomplish:
if (
![a]="Yes")
{
![type]="a"
}
Anyone know how to accomplish this in Access?
Push a button on a form that runs a macro.
The macro runs a series of if/then statements that accomplish this:
6 fields, all yes/no. For example, they are a, b, c, d, e, and f.
Only one box has a value of "yes".
there is another field called "type"
if field "a" in the particular record is set to "Yes", the "type" field of that record would be set to "a" when the macro is run.
This is sorta the flow im tryin to accomplish:
if (
{
}
Anyone know how to accomplish this in Access?