Ok, I read the article and it is very good, but I still cant grasp where I am getting stuck. I will explain the situation.
As you can see in the first picture that I have my tables linked, the Bids table has several fields that are designed to hold the number of hours a job will spend on a specific task. I have named the fields so I can recognize which one is which. I want to be able to produce a form that will print out a description of the services that have some time assigned to them.
As you can see in the second picture it is a table with the service descriptions that are very long and a short name.
The problem I am coming up with is figuring out how to associate the services with the hours stored in the Bids table.
In the third picture you can see a query I have put together. This is the best way I have put together to get out what I want, although I feel there is a better way to do it. You can see I have put an SQL expression in 3 of the columns to test my method. The code I am using is as follows:
Code:
Expr1: IIf(IsNull([DebrisLawn]),Null,"Small tree limbs, sticks, leaves and debris associated with landscape activity shall be removed from the surface of the lawn.")
This cant be the best way to do this, can you point me in the right direction?