I'm using CRXI and an MDB. In the table, I have 60 records. In addition to other stuff, each record has the following fields: ReferenceID is the primary key (1-60) and Name which is a string.
I need to display records 1-9 in individual textboxes on the report as well as records 31-39 in the same fashion. Seemed like a perfect place for formula fields. So I created a formula field with the following code:
The plan was to create a separate formula field for each of the records I want to display - but I started with just the one. This results in a blank field. When I browse the data the correct name is listed --- however the top line is a blank line. If I change the {ReferenceID} to a different number again I get the correct name in the browse window, but again there is a blank top line so the field displays a blank.
I'm missing something simple but I can't seem to find any help on the net or elsewhere. Can someone see what I'm missing here? Perhaps I'm going in the wrong direction entirely to accomplish this ... ???
TIA,
Ken
I need to display records 1-9 in individual textboxes on the report as well as records 31-39 in the same fashion. Seemed like a perfect place for formula fields. So I created a formula field with the following code:
Code:
if {ReferenceID}=1 then {Name}
I'm missing something simple but I can't seem to find any help on the net or elsewhere. Can someone see what I'm missing here? Perhaps I'm going in the wrong direction entirely to accomplish this ... ???
TIA,
Ken