Working with a spreadsheet (Excel 2007) that has a start time, end time and
time
Start Stop time
14:00 15:18 1:18
Would like to convert time to minutes and add 15 minutes to the answer. I
have set up a custom format for minutes [m] but can't get the +15. Any help
you can give me will be appreaciated.
|
|
0
|
|
|
|
Reply
|
Utf
|
5/18/2010 3:41:01 PM |
|
Try this:
=MOD(B1-A1,1)+15/(60*24)
--
HTH,
RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================
"Dottie" <Dottie@discussions.microsoft.com> wrote in message
news:38EC0DA2-5AF0-4BEB-80B6-8C9AB5F5B0B3@microsoft.com...
Working with a spreadsheet (Excel 2007) that has a start time, end time and
time
Start Stop time
14:00 15:18 1:18
Would like to convert time to minutes and add 15 minutes to the answer. I
have set up a custom format for minutes [m] but can't get the +15. Any help
you can give me will be appreaciated.
|
|
0
|
|
|
|
Reply
|
RagDyeR
|
5/18/2010 3:53:21 PM
|
|
Hi,
Try this
=(B2-A2)+TIME(0,15,0)
--
Mike
When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
"Dottie" wrote:
> Working with a spreadsheet (Excel 2007) that has a start time, end time and
> time
> Start Stop time
> 14:00 15:18 1:18
> Would like to convert time to minutes and add 15 minutes to the answer. I
> have set up a custom format for minutes [m] but can't get the +15. Any help
> you can give me will be appreaciated.
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/18/2010 3:57:00 PM
|
|
hi,
can someone helps me to solve this problem?
name no books read month
nasir 1 12-jan-2010
adam 2 12-jan-2010
fatima 3 14-jan-2010
nasir 2 2-feb-2010
adam 1 2-feb-2010
fatima 1 3-feb-2010
nasir 1 7-mar-2010
adam 4 16-mar-2010
fatima 1 21-mar-2010
nasir 1 17-apr-2010
adam 4 18-apr-2010
fatima 1 24-apr-2010
now, what i'm doing is i'm just selecting the specific month and do the
counting. The formula is Sum(B2:B4) for january. this come to a problem if
the array is not sort accordingly.
what i want is, i'm trying to get the total no of book read in a specific
month like jan or mar. but the formula should cover from jan-apr. please
someone helps me to generate the formula.
|
|
0
|
|
|
|
Reply
|
Utf
|
5/18/2010 4:21:01 PM
|
|
=SUMPRODUCT(--(MONTH(C2:C100)>=1),--(MONTH(C2:C100<=2),B2:B100)
Where 1 represents Jan, and 2 represents February. If you want only 1 months
data, change btoh of these numbers to the same value.
--
Best Regards,
Luke M
"dgnamu" <dgnamu@discussions.microsoft.com> wrote in message
news:1F6AF632-4619-4C5A-B0AD-F4992C6CE394@microsoft.com...
>
> hi,
>
> can someone helps me to solve this problem?
>
> name no books read month
> nasir 1 12-jan-2010
> adam 2 12-jan-2010
> fatima 3 14-jan-2010
> nasir 2 2-feb-2010
> adam 1 2-feb-2010
> fatima 1 3-feb-2010
> nasir 1 7-mar-2010
> adam 4 16-mar-2010
> fatima 1 21-mar-2010
> nasir 1 17-apr-2010
> adam 4 18-apr-2010
> fatima 1 24-apr-2010
>
> now, what i'm doing is i'm just selecting the specific month and do the
> counting. The formula is Sum(B2:B4) for january. this come to a problem if
> the array is not sort accordingly.
>
> what i want is, i'm trying to get the total no of book read in a specific
> month like jan or mar. but the formula should cover from jan-apr. please
> someone helps me to generate the formula.
>
>
|
|
0
|
|
|
|
Reply
|
Luke
|
5/18/2010 5:02:59 PM
|
|
Mike, thank you it works great. Now they want to convert the answer to
minutes. I tried add [m] to formatting but get a really weird answer.
Again, thank you in advance for your help.
"Mike H" wrote:
> Hi,
>
> Try this
>
> =(B2-A2)+TIME(0,15,0)
> --
> Mike
>
> When competing hypotheses are otherwise equal, adopt the hypothesis that
> introduces the fewest assumptions while still sufficiently answering the
> question.
>
>
> "Dottie" wrote:
>
> > Working with a spreadsheet (Excel 2007) that has a start time, end time and
> > time
> > Start Stop time
> > 14:00 15:18 1:18
> > Would like to convert time to minutes and add 15 minutes to the answer. I
> > have set up a custom format for minutes [m] but can't get the +15. Any help
> > you can give me will be appreaciated.
> >
|
|
0
|
|
|
|
Reply
|
Utf
|
5/18/2010 6:06:10 PM
|
|
If you really just want a single digit answer:
=(B2-H2)*24*60+15
Will convert the normal decimal value of time into a integer representing
minutes.
--
Best Regards,
Luke M
"Dottie" <Dottie@discussions.microsoft.com> wrote in message
news:E78BBDBB-5034-4F1C-959F-4C2CEFE22B8C@microsoft.com...
> Mike, thank you it works great. Now they want to convert the answer to
> minutes. I tried add [m] to formatting but get a really weird answer.
>
> Again, thank you in advance for your help.
>
> "Mike H" wrote:
>
>> Hi,
>>
>> Try this
>>
>> =(B2-A2)+TIME(0,15,0)
>> --
>> Mike
>>
>> When competing hypotheses are otherwise equal, adopt the hypothesis that
>> introduces the fewest assumptions while still sufficiently answering the
>> question.
>>
>>
>> "Dottie" wrote:
>>
>> > Working with a spreadsheet (Excel 2007) that has a start time, end time
>> > and
>> > time
>> > Start Stop time
>> > 14:00 15:18 1:18
>> > Would like to convert time to minutes and add 15 minutes to the answer.
>> > I
>> > have set up a custom format for minutes [m] but can't get the +15. Any
>> > help
>> > you can give me will be appreaciated.
>> >
|
|
0
|
|
|
|
Reply
|
Luke
|
5/18/2010 6:12:24 PM
|
|
|
6 Replies
216 Views
(page loaded in 0.195 seconds)
Similiar Articles: Time Calculation and formulas needed (2 questions) - microsoft ...#1 I'm creating a time sheet and set it up for time in and out to have separate cells using the h:mm AM/PM format. In a separate cell I have amoun... Formulas using time and dates - microsoft.public.excel.misc ...As a relative newbie to excel formulas I'm having great difficulty creating a formula where I need to add 168 hours to a date/time. After two days o... formula for local time and GMT? - microsoft.public.excel.worksheet ...I would like to display time in LOCAL time as well as GMT. Whenever LOCAL time is entered in A1, B1 should automatically display GMT. Both cells to ... Timecard functions and formulas - microsoft.public.excel.worksheet ...I have made a timecard with excel everything is working as planned except for one thing. I am unable to get the roper formula or function to calcula... Formula for calculating time period between 2 dates - microsoft ...Can someone help me create a formula for calculating the difference between 2 dates: column A: date of birth column B: date of death column C: time period between ... Start Time & End Time - microsoft.public.excel.newusers ...> > > > >I don't know how you determine the End Time of the last entry; so in your > > >example, the formula will return a #NUM! error. This can be altered depending > > >on ... Time Sheet Summary - microsoft.public.excel.worksheet.functions ...... Reg OT Sick Vac Total Hours Lunch Time Used The date column is filled with date beginning on a Sunday, ending Saturday. There are formulas to ... if formula for time sheet. - help - microsoft.public.excel ...We have 2 week time sheet that calculates each week separatly. (so as to account for time and a half) If you use comp time, it will automatically d... Formula for adding time - microsoft.public.excel.worksheet ...Are all the cells formatted for time? I have them all formatted for time (13:30) and I get " #VALUE! " in the cell with the formula. Doug... Calculating Time Spans - microsoft.public.excel.miscI'm trying to figure out how to calculate the duration between the "date/time" in to the "date ... The general formula for time difference when the time might span past ... Time FormulaPreview Release. The world's first and only TIME FORMULA -1 Past. 0 Present +1 Future . Own the technical specs for the time formula. businesses, companies, individuals. time formula: Definition from Answers.comtime formula ( tm frmyl ) ( industrial engineering ) A formula to determine the standard time of an operation as a funct Math Forum: Ask Dr. Math FAQ: Distance, Rate, and TimeDistance = Rate x Time: a discussion. ... The formula Distance = Rate x Time expresses one of the most frequently used relations in algebra. Equation of time - Wikipedia, the free encyclopediaThe equation of time is the difference between apparent solar time and mean solar time. At any given instant, this difference will be the same for every observer. Ratios and Proportions - Distance, rate and time - In DepthHow long did this take you? Use the time formula t = d/r: t = 18 miles ÷ 12 miles per hour = 1.5 hours, or 1 ½ hours. back to top 7/30/2012 10:05:32 AM
|