Cirrostratus
Registered User.
- Local time
- Today, 09:41
- Joined
- May 16, 2013
- Messages
- 29
I have a query where I'm trying to calculate when an order is expected to be completed. I have a lot size and a time standard with an efficiency for production. The result gives me a text string of time but I need it to be in the hh:mm format without doing a custom function (I later use this in a pivot table in excel).
Right now I have:
[Lot_Size]*(([TimeStandard])*(100/[Efficiency]))+[StartTime]
The lot size is a whole number
The time standard is a hh:mm format
The efficiency is a whole number
The StartTime is hh:mm format
As an example, what I need is:
10 * (00:05 * (100/110))+10:00 = 10:45
But what I'm getting is 00:4510:00, which is a bit odd.. any ideas??
Right now I have:
[Lot_Size]*(([TimeStandard])*(100/[Efficiency]))+[StartTime]
The lot size is a whole number
The time standard is a hh:mm format
The efficiency is a whole number
The StartTime is hh:mm format
As an example, what I need is:
10 * (00:05 * (100/110))+10:00 = 10:45
But what I'm getting is 00:4510:00, which is a bit odd.. any ideas??