S
Susan
My application (in Access 2003) is a simple schedule, main form data source
is a table with one column ShipDate. Subform (Continous)showing one row for
each print job on that day.
I have an option group in the main form footer which allows the user to
apply a filter so he can see all dates or only recent dates “shipdate >
date() – 7â€. The form defaults to filter on when it is opened:
Private Sub Form_Load()
DoCmd.ApplyFilter , "shipdate > date() - 7"
End Sub
I want to assign conditional formatting to 2 fields on the subform.
(ArtInProdDate and RemProdtime) ArtInProdDate is a simple date field.
RemProdTime is a calculated field (calculation is done in the data source
query.)
When I apply the conditional formatting to either one of these fields, the
form slows down, (says ‘Calculating…’ in lower left). As I scroll through
the days in the main form, it can take up to 5 minutes to calculate on each
day.
If I remove the conditional formatting, the calculation takes about 1-2
seconds.
Even more strange, I have another form which is virtually identical. Its
data source (subform) is a different query based on a different table but
they are for the most part identical, just a few different fields (and of
course different data). The two fields with the conditional formatting are
the same in every respect. This form works perfectly with the conditional
formatting applied.
Any ideas what is going on here? What would make it slow down like this?
I'm not a complete newbie but mostly self-taught with lots of holes in my
knowledge so please be kind.
Thanks in advance,
Susan
is a table with one column ShipDate. Subform (Continous)showing one row for
each print job on that day.
I have an option group in the main form footer which allows the user to
apply a filter so he can see all dates or only recent dates “shipdate >
date() – 7â€. The form defaults to filter on when it is opened:
Private Sub Form_Load()
DoCmd.ApplyFilter , "shipdate > date() - 7"
End Sub
I want to assign conditional formatting to 2 fields on the subform.
(ArtInProdDate and RemProdtime) ArtInProdDate is a simple date field.
RemProdTime is a calculated field (calculation is done in the data source
query.)
When I apply the conditional formatting to either one of these fields, the
form slows down, (says ‘Calculating…’ in lower left). As I scroll through
the days in the main form, it can take up to 5 minutes to calculate on each
day.
If I remove the conditional formatting, the calculation takes about 1-2
seconds.
Even more strange, I have another form which is virtually identical. Its
data source (subform) is a different query based on a different table but
they are for the most part identical, just a few different fields (and of
course different data). The two fields with the conditional formatting are
the same in every respect. This form works perfectly with the conditional
formatting applied.
Any ideas what is going on here? What would make it slow down like this?
I'm not a complete newbie but mostly self-taught with lots of holes in my
knowledge so please be kind.
Thanks in advance,
Susan