문제

The title of this Question may not be accurate because I wasn't sure how to ask the question.

Is there A way to have an ID field in AC 2010 the has a constant part and then a part of the ID that the user will enter in?

EXAMPLE: "EMP9066"

-I would like the "EMP" part of the ID to be constant at all times and the user should not be able to change it and the "9066" is a four digit that the user will be asked to type in.

Please Help.

_ Remember this is not SQL just basic access with some macros.

Thanks

도움이 되었습니까?

해결책

Access has a data type called autonumber which will generate a unique number for each record automatically but it does not allow for the alpha prefix.

if it is indeed constant then the simplest approach is to prefix with it for display, ie in the table the field would be called recId (for example) and you would view the rows via a query with a calculated column

EmpId: "EMP" & format$(RecId,"0000")

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top