T
Trevor Aiston
I have a data entry form on a projects database which has three fields to
store the component parts of the project reference code
[PSPC]
[PSPN]
[PFYN]
I have put a text box on the form which conacanates the field to give a
complete reference value
=[PSPC] & "." & [PSPN] & "." & [PFYN]
That works BUT. On the form Field [PSPC] is a combo box with a row source
control of
SELECT [SERVICES AVAILABLE].ServRecordNumber, [SERVICES AVAILABLE].ServCode,
[SERVICES AVAILABLE].ServDescription FROM [SERVICES AVAILABLE];
Which shows the contents of the ServDescription from a lookuptable [SERVICES
AVAILABLE].
But when I refernce the [PSPC] field in the text box it returns the PSPC
record number (ServRecordNumber)rather than description (ServDescription).
Any ideas how-to get the ServDescription used rather than ServRecordNumber?
TIA
Trevor
store the component parts of the project reference code
[PSPC]
[PSPN]
[PFYN]
I have put a text box on the form which conacanates the field to give a
complete reference value
=[PSPC] & "." & [PSPN] & "." & [PFYN]
That works BUT. On the form Field [PSPC] is a combo box with a row source
control of
SELECT [SERVICES AVAILABLE].ServRecordNumber, [SERVICES AVAILABLE].ServCode,
[SERVICES AVAILABLE].ServDescription FROM [SERVICES AVAILABLE];
Which shows the contents of the ServDescription from a lookuptable [SERVICES
AVAILABLE].
But when I refernce the [PSPC] field in the text box it returns the PSPC
record number (ServRecordNumber)rather than description (ServDescription).
Any ideas how-to get the ServDescription used rather than ServRecordNumber?
TIA
Trevor