L
LisaConsult
I have a fairly large access application. It is split FE/BE with the BE
residing on a Novell Network drive. I have implemented most of the
performance hints that are suggested and overall the app is/was running fine.
However, due to needing International currency symbols, I recently converted
from Arial to Arial Unicode MS on about 15 fields in an Access report.
Additionally, I have modified to these fields for formatting (e.g.formatting
used to say
=IIf([Sal1]=0,"",IIf([PayBasisSW]="S",Format([Sal1],"$#,##0.0"),Format([Sal1],"$#,##0.00")))
and now says
=Replace(IIf([Sal1]=0,"",IIf([PayBasisSW]="S",Format([Sal1],"$#,##0.0"),Format([Sal1],"$#,##0.00"))),"$",[txtSymbol])
where [txtSymbol] is a field on the report header which tells the currency
Symbol).
In printing this report across a network (database on network and printer on
network). The spooling used to be neglible. Now the spooling is taking up
to 10 minutes for 170 pages. The spooling is not as bad on an MS network,
but also still a bit slow. Is it the Unicode font or the formula that's
killing me? Any suggestions of ways to reduce the spool time? Thanks.
residing on a Novell Network drive. I have implemented most of the
performance hints that are suggested and overall the app is/was running fine.
However, due to needing International currency symbols, I recently converted
from Arial to Arial Unicode MS on about 15 fields in an Access report.
Additionally, I have modified to these fields for formatting (e.g.formatting
used to say
=IIf([Sal1]=0,"",IIf([PayBasisSW]="S",Format([Sal1],"$#,##0.0"),Format([Sal1],"$#,##0.00")))
and now says
=Replace(IIf([Sal1]=0,"",IIf([PayBasisSW]="S",Format([Sal1],"$#,##0.0"),Format([Sal1],"$#,##0.00"))),"$",[txtSymbol])
where [txtSymbol] is a field on the report header which tells the currency
Symbol).
In printing this report across a network (database on network and printer on
network). The spooling used to be neglible. Now the spooling is taking up
to 10 minutes for 170 pages. The spooling is not as bad on an MS network,
but also still a bit slow. Is it the Unicode font or the formula that's
killing me? Any suggestions of ways to reduce the spool time? Thanks.