I'm not sure if this is possible or not. I don't think that it is.
I need to find the average number of days that an account has been entered. All I have is the date it was entered and of course the current date.
Now here's the interesting part. I need average days in the system for accounts that are 0-15 days only, 16-21 days only, etc.
There isn't an operation that I can do that would come up with that that I can think of. If the days in the system were stored in a field though it would be simple, so I'm probably just going to create a field in one of my tables to store that information. But even then I'm not sure that will work. Can a field store an expression like =(Date() - DateEntered) and calculate that?
I need to find the average number of days that an account has been entered. All I have is the date it was entered and of course the current date.
Now here's the interesting part. I need average days in the system for accounts that are 0-15 days only, 16-21 days only, etc.
There isn't an operation that I can do that would come up with that that I can think of. If the days in the system were stored in a field though it would be simple, so I'm probably just going to create a field in one of my tables to store that information. But even then I'm not sure that will work. Can a field store an expression like =(Date() - DateEntered) and calculate that?