Skip to main content
Jim Arnold (Xerox) 님이 #Data Management에 질문했습니다
I am trying to restrict a field from being changed after it is populated.  If I force the user to enter a value when setting up the project I can do this with the following code.

 

AND(

 

NOT( ISNEW() ),

 

ISCHANGED( expression )

 

)

 

However this does not work if the field is blank, I have tried multiple combinations of 

 

ISNULL(expression)

 

or ISBLANK(expression)

 

But cannot seem to find the right one.

 

Does anyone have the code to allow a user to enter data in a blank field then restrict it fom being changed again
답변 12개
0/9000