Jdraw,
My query already shows the amount of contracted hours covered per month, which changes from month to month depending on how many weekdays and weekend days there are for that month. This part of the query works perfect. The same query looks through my workorders table for the same time period and shows all downtime in hours. In another field in the same query I take these two values above and show the availabilty of the equipment. This represents uptime in a percentage . All of this works as expected. Each month the customer will request extra coverage depending on their workload.
When I run my query at the end of the month I will know how much extra coverage there was and I would like my query to prompt if there was any additional hours to be added. At the prompt I could select "enter" for zero or enter the value in hours. Then have this added to the already known value of contracted hours.
The field in my query that shows the contracted hours is named "ContractedHours"
The field in my query that shows the downtime hours is namd "DownTime"
The field in my query that shows the percentage of availabilty is named "SystemAvailibility"
I was thinking that I could add another field that would that the value in "ContractedHours" and the value that I enter when prompted and add those together and show it as a value. Then I could redirect my"SystemAvailibility" to this new field instead of the contracted hours field.
I'm the person running the query, and Yes, I have a report that is built from this query. The extra hours have already been accounted and approved by the customer. My report will show both, the contracted hours and the extra hours.
I just need help with a field that would prompt for input and add add to the field Contracted hours.
If it cant be done , then I might have to make a new table that allows me to enter in the extra hours and name the table "Extra" . The have the query include this value when its ran.
Thanks
Rick