Sum Of Lap Times In Order To Give Race Time At Any Lap

Apr 13, 2009



=C4+(0.3*(C5-((C2-1)*C3)))

Where C4 is 'Qualifying time', C5 is 'Starting fuel', C2 is 'Lap number' and C3 is 'Fuel consumption'. I also plan to make the 0.3 a changeable variable.

I'm not fussed as to whether or not this is a realistic function that would work in a real race, it's only hypothetical. However I would like to have a function that would give me the over all race time at any given lap, not just the lap time for it.

View 7 Replies


ADVERTISEMENT

Calculating Order Entry Times With A Multiplier

Sep 16, 2009

B2: =SUMPRODUCT(--(INT('Order Entry'!$B$2:$B$37)=Summary!$A2) )

C2: =SUMPRODUCT( (INT('Order Entry'!$B$2:$B$37)=Summary!$A2) * 'Order Entry'!$A$2:$A$37) / Summary!B2

D2: =MIN(IF(INT('Order Entry'!$B$2:$B$37)=Summary!$A2, 'Order Entry'!$A$2:$A$37))

E2: =MAX(IF(INT('Order Entry'!$B$2:$B$37)=Summary!$A2, 'Order Entry'!$A$2:$A$37))

The overall picture is an order tracking sheet that has start times in column B, end times in column C, number of jobs in an order number in column D and the processing time in column A. On the Summary sheet I have dates listed for each workday.

Next to these dates I am wanting a formula that will traverse through column B of the Custom and Order Entry sheets and provide the number of orders and average processing time that match this. There can be multiple jobs per order number so it needs to order the Sumproduct by column D for each.

View 4 Replies View Related

Formula To Give A Time Minus 15 Mins

Aug 1, 2008

i have =TIME(LEFT(F17,FIND("h",F17)-1),RIGHT(F17,2),0). which gives a time in the format 9:30PM, or 10:30AM etc. How would i change the formula to give me a time minus 15 mins. Eg, if the above formula gave me 8:45PM, i would want it to show 8:30PM

View 4 Replies View Related

Text To Time Then Give Total After Midnight

Feb 6, 2009

I Have 20:00-04:00 as text in a cell, what i need is to take the 04:00 and show only if its after 00:00 and before 07:00 and show it as time value. This is where I'm up to so far but i don't know how to ask it for > 00:00 and < 07:00.

View 4 Replies View Related

How To Give Comments To Multiple Cells At A Time

Feb 4, 2012

columns consist of 1,2

I selected only 1 value of cells

I want to add comments to all the 1 value cells by selecting all 1 by shift + ctl +down

I can put same comments to all the cells?

If you want to have the same comment applied on many cells you could apply it to a single cell, then use the copy and paste special tool bar commands (under Edit) In Paste Special select "Comments" but value is going of that cell.

View 5 Replies View Related

Formula To Be Able To Give The Full Time Rate

Oct 5, 2009

I have a spreadsheet, but I need the following formula to make our lives easier here.

I have the following columns:

Rate, I/T/P/S, FT/PT

I need a formula that when I enter "I" for Infant it will give me the FT (full time) or PT (part time) rate. All the columns have drop down menus, so if I choose "I" under the ITPS column and then choose FT, I want the formula to be able to give me the full time rate which is 157.94

View 9 Replies View Related

Forumla For The Calculating Total TIME But To Give A Value As 0 When Text Is Typed

Apr 14, 2009

I have set up a spreadsheet to calculate time as followed:

A1 - Start Time
B1 - Finish Time
A2 - Hours Worked:


=IF(B1<A1,B1+1,B1)-A1

C1 - Start Time
B1 - Finish Time
C2 - Hours Worked:


=IF(D1<C1,D1+1,D1)-C1

and so on.........

View 10 Replies View Related

CInt(Variant) Give Errror = Run-Time Error 6, Overflow

Feb 11, 2009

I wanted to convert a variant to an integer. The variant data is stored in an array, the variant data was entered from a userform.

Private Sub CB_OilPrice_Click()
Dim xx As Long
UserFormSpecifyDetail.Show 'Enter data

For i = 1 To 120
xx = VarType(UserFormInputArray(i)) 'Returns 8
xx = Int(UserFormInputArray(i)) 'Returns error
Next i
End Sub

The value in UserFormInputArray = "50000"
error = Run-Time error 6, overflow

Excel 2003

View 9 Replies View Related

Forumla To Give A Starting Number And Take One Away Each Time A Code Or Codes Are Dislayed In A Cell Range

Mar 22, 2009

In 1 cell i need a forumla to give me a starting number and take one away each time a code or codes are dislayed in a cell range. Something like this

A1 = 23 days or any number days i needed

Cell range B1:C52

every time a selected 1 or 2 letter code appears in the cell range i want A1 to subtract 1 day from the starting number, i would need it to subtract half a day if one code appears ie HD, the codes may be P, OT, HD

View 4 Replies View Related

Race Track Chart

Jul 12, 2006

I am running a contest for my office and the theme is 'nascar'. Anyway - we'd like to chart the contestants using a racetrack. Is this possible in Excel or any other MS Office tool?

Basically I'd like to show the placement of ten contestants on a circular racetrack. It would be updated weekly.

View 3 Replies View Related

Isolating Race Numbers From Text?

Oct 29, 2012

I have the following examples of text in column A

Race 1 - NORTHAM FEED & HIRE MAIDEN STAKE (SKY2)
Race 12 - NORTHAM MAIDEN STAKE (SKY2)

I want to isolate the race numbers so thy are in column P as follows

1
12

View 8 Replies View Related

Summary Results Of Race Data

Oct 29, 2007

I have the following table for results in 7 races by 8 competitors (NB Not all competitors compete in every race)

Competitor Race 1 Race 2 Race 3 Race 4 Race 5 Race 6 Race 7
........A...........3..........5..........4.........6..........4........1
........B...........2..........4..........3.........4..........6........3
........C...........4..........3..........2.........5..........5........4
........D.......................6..........1....................7.........2........3
........E...........7..........7..........8....................3.........5........4
........F...........1..........2..........6.........1..........8........8........1
........G...........5..........1..........5.........2..........1........7.......5
........H...........6..........8..........7.........3..........2........6........2

What I'd like to have is a table with summary results by the follwing criteria:

Most 1sts:
Most top 3:
Most bottom 2:
Lowest average position:
Highest average position:

What formulas would I have to use to get each of the 5 results?

View 9 Replies View Related

VBA To Calculate Profit & Loss Of Each Race Bet

Feb 1, 2009

I had a member make the MACRO in the attached spreadsheet some time ago, when i run it on the spreadsheet a runtime mismatch error occurs. I cant find the mismatch.

View 4 Replies View Related

Race Car Driver Comparision Tool

Jul 30, 2006

1: two colums of data for each car (lap distance covered and speed). Now each driver is going to decide to brake at different points.
2: i have coner data (eg corner 1 is at 150meters to 200 meters, corner 2 is at etc)
3. I am trying to create something that will do the following.

determine the lap distance at which the driver is braking (the point where speed decreases). I would like to do this for each corner and each driver. I am struggling to find a way of determining how to read the "lap distance" value when the corresponding "speed" value stops increasing and actually starts to decrease. This is the point at which the driver is braking

View 9 Replies View Related

To Have Same Sorting, Same Order, Each Time

Mar 1, 2007

I have three columns of data I need to continually order in the same order. DIMM High, DIMM Low, CPU High, CPU Low, Freq High. The second column has the dates these were run and the column after that has the time run. The first column must list the tests in the same order, even if one tests was run twice, so say CPU High was run twice before the other tests were run, I still need the test column to list the other four test and then run the Dimm High again.

DIMM_High1/22/2007 14:52:55
DIMM_Low 1/22/2007 15:54:12
CPU_High 1/22/2007 16:36:43
CPU_High 1/22/2007 16:37:00
CPU_Low 1/22/2007 18:05:48
CPU_Low 1/22/2007 23:05:48
FREQ_High 1/22/2007 22:55:51
FREQ_High 1/22/2007 16:55:51

The problem is, Excel wants to list them by their name first. How can I get the list to appear as below:

DIMM_High1/22/2007 14:52:55
DIMM_Low 1/22/2007 15:54:12
CPU_High 1/22/2007 16:36:43
CPU_Low 1/22/2007 18:05:48
FREQ_High 1/22/2007 16:55:51
CPU_High 1/22/2007 16:37:00
CPU_Low 1/22/2007 18:15:48
FREQ_High 1/22/2007 16:59:51

View 8 Replies View Related

Time Between Times

Apr 21, 2007

How can i work out how long has passed between times, in excel.

my times are formatted as times eg 16:00 and 01:00 i then need them in base 100 so as i can work out labour percentages.

View 9 Replies View Related

Get Closest Times Above & Below Specified Time

Jul 24, 2007

I am trying to pull the closest times above and below and some other data from various worksheets. I've included a sample worksheet that has a dumbed down version of the tables and sheets.

I am having problems pulling the correct times and believe my error is in this part of the bigger formulas (

COLUMN(INDIRECT(portlookup&C5&"HEAD"))-COLUMN(C1),3)+1<=2
which breaks down to
COLUMN(INDIRECT(ABYJANHEAD))-COLUMN(C1),3)+1<=2

I don't think this is accurately telling my formula how to look at the table and pick the right time. I've tried different mod divisors and still can't get it to pull the right time.

View 9 Replies View Related

Time (clock) Times A Number

Apr 2, 2009

I have a start time in one column, end time in another and a column with the difference between the two. In another column I have profit. In the last column I have profit per hour where I divide the profit by the hours, but since one is hours and the other is a number it gives me an error.

View 4 Replies View Related

Calculating Turn Around Time Between Two Times

Mar 12, 2009

i want to calculate the TAT between two times. the TAT target is <= 2 hours. i used the following formula

a1 has 3/13/2009 (received date)
b1 has 7:08 AM (received time)
c1 has 3/13/2009 (completed date)
d1 has 9:08 AM (completed time)
e1 has TAT formula :- '=IF((D1-B1)*1440<=120,"Met TAT","Not Met TAT")

however this formula does not work in the following conditions.

In these conditions, it is considered that TAT is met.
1. When the difference in time is <=2 hours .... for TAT calculation, on working days and working hours are taken into consideration.

To illustrate.
Day begins : 8:00 AM
Day ends : 4:00 PM

If job is received at 3:30 PM and completed the next working day by 9:30 AM, then it is considered TAT is met.
calculation = 4:00 PM - 3:30 PM = half hour + next day's 9:30 AM - 8:00 AM = 1.5 hours, therefore, total working hours used to complete the job is within the agreed TAT.

If job is received and completed on non working days and during non working hours, it is considered TAT met.

If job is received almost at the end of the day, say, 3.30 PM and job is completed at 8:00 PM same day, then it is considered TAT met, rationale, only half an hour of working hours used to complete the job.

View 11 Replies View Related

Compare Range Of Times Against Set Time

Jan 7, 2008

I am trying to get rid of some duff data by running a comparison to a fixed value on a defined range. However, the macro tries to compare the cell value (00:05:00) as a decimal value.

I think I need to use the format function to get round this.

For Each timecheckcell In range("g3:g60")
timecheckcell.Value = Format(MyTime, "h:m:s")
If timecheckcell.Value <> "00:05:00" Then timecheckcell.Offset(0, 1) = ""
Next

View 9 Replies View Related

How To Calculate The Average Time Over A Number Of Times

Apr 28, 2014

I am looking for a way to calculate the average time, over a number of times.

So basically, would have different times in 24 hour hh:mm:ss, all in column i.

I have tried =AVERAGE(i2:i18) and it doesn't work.

I have also tries Ctrl/Shift enter as an array, it didn't work.

I tries to format cells as time and number, it didn't work!

View 1 Replies View Related

Subtracting Time (finding The Difference Between Times)

Dec 8, 2009

I am having trouble finding the difference between times. I have two cells, A1, A2. Times will be placed in there each day. A1 will have the first time and A2 will have a later time that day. i.e. A1 12:25AM, A2 2:45AM. A3 would have the formula. In this case I am looking for an answer of 2:00 (2hrs).

My second issue will be times when I have A1 11:20pm and A2 1:20am. I can't seem to get it to work.

View 3 Replies View Related

Pull Out The Sample Date And Time 20 Times

Dec 3, 2009

I have a file that samples performance on a cpu. The output shows the sampling date and time in column A. This column changes depending on how long I run the file. No matter how long the column, I only want to pull out the sample date and time 20 times. So if I had data in column A with 300 rows, I want to divide 300 by 20 and pull those 20 numbers and put them in column B in chronological order. Same thing if I had 4000 rows in column A, I only want 20 samples.

View 5 Replies View Related

Converting Time: Subtract Two Times To Get The Difference

Dec 14, 2008

I'm trying to subtract two times to get the difference. Entries are in military format (1615) and VBA converts the time to 16:15. My problem is that when a time is entered between 0001 and 0059 (i.e. 0015), the VBA converts the time to :15. My formula does not recognize this, but does recognize 0:15 (entered without VBA). The cell is custom formatted as h:mm. I've tried several other formats including [h]:mm but can't get any to work. How can I get a formula to recognize it?

=IF(U12<T12,(U12+1)-T12,U12-T12)

where U12 is :15 and T12 is 23:00

View 5 Replies View Related

Time Sheet :: Start / End And Difference Between Two Times

Apr 30, 2009

I am trying to create a time sheet where there will be a start time - end time - number of hours (difference between the 2) - pay rate - total pay, but am getting strange results!

View 9 Replies View Related

CSV Import Showing Times As Date & Time

Jul 17, 2007

I am trying to import a .csv file with several fields that are timestamps. I get the file in Excel, and do Format, Cell, date as mm/dd/yyyy hh:mm.

My results come back as 1/0/1900 12:37:22 AM
My raw .csv field looks like 37:22.4

how I lost my date? I did check my system clock just in case, and it appears to be accurate.

View 9 Replies View Related

Time Difference Formula Where Both Times In 1 Cell

Aug 14, 2007

I need some IF formula I believe that will yield an answer between 1 - 5. I'm not swavey enough with these things to figure this one out... trust me I tried and it keeps getting more confusing for me.

If the time worked is between certain time criteria then it would equal 1 - 5 depending on the time.

Example: If I work between the hours of 5am and 1pm then I would be in the Open/Mid range and would need to equal 2. If I only worked a few hours and my hours fell only between the Mid range then it would equal 3.

Then based on that... It would automatically fill in on the deployment charts... My name would show up on the Open and Mid Deployments under the task chosen for me to do that day.

I've attached a small sample of what I am looking for to kind of help show what I need. The highlighted areas are the areas I'm not sure how to do.

View 9 Replies View Related

Creating A Purchase Order Form That Will Reduce Time Spent Adding?

Apr 18, 2013

I'm creating a Purchase Order Form that will reduce time spent adding in contact details.What I'm looking to achieve is a form that will be printed with a few formulas allowing sections of the form to be filled out automatically once a singular company name (chosen from a drop-down list I created, currently with a 'Combo box ActiveX') then the rest of the form is filled out accordingly.

At the moment it's a bit of a mess, not too sure where I'm meant to put the ranges.There are currently 2 sheets - Sheet 1 with the form, Sheet 2 with all contact information.

View 1 Replies View Related

Formula To Work Out A Variance Between Two Times (subtracting Time)

Apr 8, 2007

formula to work out a variance between two times

Using the 24hr time format in cell a1 i have a start time of 10:43 and in cell b1
i have an estimated time i think a job should take in this case 30 minutes and in cell c1 i have the actual time that job was finished in this case 11:07 and in cell d1 i have a variance between the two times which in this case would be saving me 6 minutes

View 9 Replies View Related

Calculate If Time Value In Cell Is Between Times Located In Two Other Cells

Feb 7, 2008

I'm trying to calculate whether a time value located in a cell is between the times in two other cells. Here is what I tried:

=IF((AND($A62>=C$55,$A62

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved