Adrianna
Registered User.
- Local time
- Today, 17:28
- Joined
- Oct 16, 2000
- Messages
- 254
Okay I have a few fields that automatically update to provide the user with a preview of their record status. This information is at the beginning of their for and changes if the user makes changes to the fields that affect the status fields. All of the automatically updated fields that rely on just a few suject fields are working properly, but ......
I have one Auto Update field that displays an over all prject status. This field needs to update based on the information in almost all of the other fields in the form (and there are a lot). So, I was wonder what the best way of checking for IsNotNull on groups of fields would be. Basically, I have about 15 fields that determine Stage 1 (which is the default, but until all 15 are filled in...I don't want to move to Stage 2). Once all 15 are NotNull, I want to more to Stage 2 and start checking if the next 8 fields are NotNull. When those 8 are NotNull, I want to update to Stage 3....and so forth.
For the short auto fields, IFThenElse statements work well, but this would be a monster of a nested If statement, so I was wondering what would be the best way to make this overall project status field work?

I have one Auto Update field that displays an over all prject status. This field needs to update based on the information in almost all of the other fields in the form (and there are a lot). So, I was wonder what the best way of checking for IsNotNull on groups of fields would be. Basically, I have about 15 fields that determine Stage 1 (which is the default, but until all 15 are filled in...I don't want to move to Stage 2). Once all 15 are NotNull, I want to more to Stage 2 and start checking if the next 8 fields are NotNull. When those 8 are NotNull, I want to update to Stage 3....and so forth.
For the short auto fields, IFThenElse statements work well, but this would be a monster of a nested If statement, so I was wondering what would be the best way to make this overall project status field work?