Please, help if you can!
Here is a table I am using on my Report.
Data looks like this:
Job Location Loc_CODE Description
111 AAA 2 FirstLocation
222 BBB 3 ThirdLocation
333 CCC 4
I have to have all fields on the Report.
So I was told to create a table where I would go
Loc_Code Description
4 ForthLocation
5 FifthLocation
Now all I need is to have my Report that Displays
TITLE
LOCATION
DESCRIPTION
Report DATA
to display 'ForthLocation' IF Loc_Code =4 (I have 5 orphan codes like that)
I am trying and nothing good comes my way in terms of ideas.
Thanks
P.S. When there is no Description - it is not NULL but " "
Loc_code is not always " "
So I thought of having some code like
If Description = " " and Loc_code =4 then txtDescription.value = 'ForthLocation'
or
If Description = " " and Loc_code =5 then txtDescription.value = 'FifthhLocation'
Thanks
Here is a table I am using on my Report.
Data looks like this:
Job Location Loc_CODE Description
111 AAA 2 FirstLocation
222 BBB 3 ThirdLocation
333 CCC 4
I have to have all fields on the Report.
So I was told to create a table where I would go
Loc_Code Description
4 ForthLocation
5 FifthLocation
Now all I need is to have my Report that Displays
TITLE
LOCATION
DESCRIPTION
Report DATA
to display 'ForthLocation' IF Loc_Code =4 (I have 5 orphan codes like that)
I am trying and nothing good comes my way in terms of ideas.
Thanks
P.S. When there is no Description - it is not NULL but " "
Loc_code is not always " "
So I thought of having some code like
If Description = " " and Loc_code =4 then txtDescription.value = 'ForthLocation'
or
If Description = " " and Loc_code =5 then txtDescription.value = 'FifthhLocation'
Thanks