I am exporting an access database to excel. the database is a call center database that tracks system downtime and the impact. Impact varies from green=up-low impact, yellow=partial-medium impact, and red=down-major impact. The export expression, listed below, takes the close date and time - the open date and time, converts to minutes and then tack on the impact. I am trying to get either access or excel to display a round number. The expression and the result are listed below. Excel will not autoformat a mixed (number and text) cell. Win 2K SP4 OS and Office/Access 2K.
Expression:
TimeToRepair: ([MPR].[Close Date]-[MPR].[Open Date])*1440 & "Minutes" & [System Impact] & "Time"
Current Result:
188.999999997905 Minutes Green Time
Desired Result:
189 Minutes Green Time
Expression:
TimeToRepair: ([MPR].[Close Date]-[MPR].[Open Date])*1440 & "Minutes" & [System Impact] & "Time"
Current Result:
188.999999997905 Minutes Green Time
Desired Result:
189 Minutes Green Time