Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to get an overtime rate to automatically calculate in an excel
spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
K5: =G5 * 1.5 In article , countrygirl0712 wrote: I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I came into work this morning very anxious to try the formula and it worked
great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. "JE McGimpsey" wrote: One way: K5: =G5 * 1.5 In article , countrygirl0712 wrote: I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Note that the SUM() in your formula is not necessary, simply applying a
another function to the value returned by k5*1.5, returning the same value. In article , countrygirl0712 wrote: I came into work this morning very anxious to try the formula and it worked great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Okay, thanks again.
"JE McGimpsey" wrote: Note that the SUM() in your formula is not necessary, simply applying a another function to the value returned by k5*1.5, returning the same value. In article , countrygirl0712 wrote: I came into work this morning very anxious to try the formula and it worked great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=G5*1.5
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I came into work this morning very anxious to try the formula and it worked
great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. "Bob Phillips" wrote: =G5*1.5 -- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
No need for SUM, nothing is being summed so it is superfluous.
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I came into work this morning very anxious to try the formula and it worked great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. "Bob Phillips" wrote: =G5*1.5 -- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you very much.
"Bob Phillips" wrote: No need for SUM, nothing is being summed so it is superfluous. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I came into work this morning very anxious to try the formula and it worked great. I put it in the cell that I wanted the answer in like this =sum(k5*1.5) and it worked great. Thank you so much for your help. "Bob Phillips" wrote: =G5*1.5 -- HTH Bob Phillips (remove nothere from email address if mailing direct) "countrygirl0712" wrote in message ... I am trying to get an overtime rate to automatically calculate in an excel spreadsheet. I want to take the hourly rate in one cell divide it by 2 and then add the hourly rate to the rate I got by dividing and put that total into another cell. Example: Cell G5 is hourly rate of $10.00. I want to divide that by 2 which will give me $5.00. I want to add the $10.00 & $5.00 together giving me $15.00 and I want that to go into say cell K5. Does anyone know how to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|