VICH Posted December 16, 2005 Posted December 16, 2005 is there any kinda of fucntion i can put in a calc feild that works by detecting if a feild's data changes like if( Changes(field); result 1; Result 2)
Raybaudi Posted December 16, 2005 Posted December 16, 2005 Hi VICH you can start from this calculation field that checks if field is been modified (lets name it check): Case( check = "Modified";"Modified"; IsEmpty ( field );""; not IsEmpty ( field ) and IsEmpty ( check );field; check = field;field; check ≠ field;"Modified" ) BTW this calc is permanent; if someone (you too) modifies field, check will be set to "Modified". To can set check to empty you can add, for example, as the first case condition, this: field = "^^^";""; so you (and all others who know) can type ^^^ in the field and check will become empty.
VICH Posted December 19, 2005 Author Posted December 19, 2005 thanks i'll try to figure it out using that
Recommended Posts
This topic is 7012 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now