Hi,
I'm having issues with a setup I'm using to hold data on certain lease numbers within a region. As it is, I have a set amount of information I want on one single record, and all overspill is recorded on the next record, and so forth, until all the info I have is accounted for.
What I want to do is have a quick reference on every record, aside from the normal page numbering system, which just counts how many records I have. I want to know how many different lease numbers I have, and I have created a note at the bottom of lease number and last name. For example I want to create:
LeaseNumber LeaseName
|
|
-Info-
|
|
Page#(of total printed on paper), Page#(of identical records)
so I might end up with
455633 Katz
|
|
55 of 180, 1 of 4
I can return the number of identical LeaseNumber fields by using Count and Dlookup, but denoting first second third pages is tricky.
Currently, I'm using an AfterUpdate event where, when the LeaseNumber is entered, it adds 1 to the PageCount field, where its default value is 0. However, if for some reason somebody changes or simply re-enters the LeaseNumber value, PageCount is no longer correct. What can I do to idiot-proof this?
I'm having issues with a setup I'm using to hold data on certain lease numbers within a region. As it is, I have a set amount of information I want on one single record, and all overspill is recorded on the next record, and so forth, until all the info I have is accounted for.
What I want to do is have a quick reference on every record, aside from the normal page numbering system, which just counts how many records I have. I want to know how many different lease numbers I have, and I have created a note at the bottom of lease number and last name. For example I want to create:
LeaseNumber LeaseName
|
|
-Info-
|
|
Page#(of total printed on paper), Page#(of identical records)
so I might end up with
455633 Katz
|
|
55 of 180, 1 of 4
I can return the number of identical LeaseNumber fields by using Count and Dlookup, but denoting first second third pages is tricky.
Currently, I'm using an AfterUpdate event where, when the LeaseNumber is entered, it adds 1 to the PageCount field, where its default value is 0. However, if for some reason somebody changes or simply re-enters the LeaseNumber value, PageCount is no longer correct. What can I do to idiot-proof this?
Comment