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 amp; $5.00
together giving me $15.00 and I want that to go into say cell K5. Does
anyone know how to do this?
One way:
K5: =G5 * 1.5
In article gt;,
countrygirl0712 gt; wrote:
gt; I am trying to get an overtime rate to automatically calculate in an excel
gt; spreadsheet. I want to take the hourly rate in one cell divide it by 2 and
gt; then add the hourly rate to the rate I got by dividing and put that total
gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I want to
gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp; $5.00
gt; together giving me $15.00 and I want that to go into say cell K5. Does
gt; anyone know how to do this?
=G5*1.5
--
HTH
Bob Phillips
(remove nothere from email address if mailing direct)
quot;countrygirl0712quot; gt; wrote in
message ...
gt; I am trying to get an overtime rate to automatically calculate in an excel
gt; spreadsheet. I want to take the hourly rate in one cell divide it by 2
and
gt; then add the hourly rate to the rate I got by dividing and put that total
gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I want to
gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp;
$5.00
gt; together giving me $15.00 and I want that to go into say cell K5. Does
gt; anyone know how to do this?
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.
quot;JE McGimpseyquot; wrote:
gt; One way:
gt;
gt; K5: =G5 * 1.5
gt;
gt; In article gt;,
gt; countrygirl0712 gt; wrote:
gt;
gt; gt; I am trying to get an overtime rate to automatically calculate in an excel
gt; gt; spreadsheet. I want to take the hourly rate in one cell divide it by 2 and
gt; gt; then add the hourly rate to the rate I got by dividing and put that total
gt; gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I want to
gt; gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp; $5.00
gt; gt; together giving me $15.00 and I want that to go into say cell K5. Does
gt; gt; anyone know how to do this?
gt;
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.quot;Bob Phillipsquot; wrote:
gt; =G5*1.5
gt;
gt; --
gt; HTH
gt;
gt; Bob Phillips
gt;
gt; (remove nothere from email address if mailing direct)
gt;
gt; quot;countrygirl0712quot; gt; wrote in
gt; message ...
gt; gt; I am trying to get an overtime rate to automatically calculate in an excel
gt; gt; spreadsheet. I want to take the hourly rate in one cell divide it by 2
gt; and
gt; gt; then add the hourly rate to the rate I got by dividing and put that total
gt; gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I want to
gt; gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp;
gt; $5.00
gt; gt; together giving me $15.00 and I want that to go into say cell K5. Does
gt; gt; anyone know how to do this?
gt;
gt;
gt;
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 gt;,
countrygirl0712 gt; wrote:
gt; I came into work this morning very anxious to try the formula and it worked
gt; great. I put it in the cell that I wanted the answer in like this
gt; =sum(k5*1.5) and it worked great. Thank you so much for your help.
No need for SUM, nothing is being summed so it is superfluous.
--
HTH
Bob Phillips
(remove nothere from email address if mailing direct)
quot;countrygirl0712quot; gt; wrote in
message ...
gt; I came into work this morning very anxious to try the formula and it
worked
gt; great. I put it in the cell that I wanted the answer in like this
gt; =sum(k5*1.5) and it worked great. Thank you so much for your help.
gt;
gt;
gt; quot;Bob Phillipsquot; wrote:
gt;
gt; gt; =G5*1.5
gt; gt;
gt; gt; --
gt; gt; HTH
gt; gt;
gt; gt; Bob Phillips
gt; gt;
gt; gt; (remove nothere from email address if mailing direct)
gt; gt;
gt; gt; quot;countrygirl0712quot; gt; wrote in
gt; gt; message ...
gt; gt; gt; I am trying to get an overtime rate to automatically calculate in an
excel
gt; gt; gt; spreadsheet. I want to take the hourly rate in one cell divide it by
2
gt; gt; and
gt; gt; gt; then add the hourly rate to the rate I got by dividing and put that
total
gt; gt; gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I
want to
gt; gt; gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp;
gt; gt; $5.00
gt; gt; gt; together giving me $15.00 and I want that to go into say cell K5.
Does
gt; gt; gt; anyone know how to do this?
gt; gt;
gt; gt;
gt; gt;
Okay, thanks again.
quot;JE McGimpseyquot; wrote:
gt; Note that the SUM() in your formula is not necessary, simply applying a
gt; another function to the value returned by k5*1.5, returning the same
gt; value.
gt;
gt;
gt; In article gt;,
gt; countrygirl0712 gt; wrote:
gt;
gt; gt; I came into work this morning very anxious to try the formula and it worked
gt; gt; great. I put it in the cell that I wanted the answer in like this
gt; gt; =sum(k5*1.5) and it worked great. Thank you so much for your help.
gt;
Thank you very much.
quot;Bob Phillipsquot; wrote:
gt; No need for SUM, nothing is being summed so it is superfluous.
gt;
gt; --
gt; HTH
gt;
gt; Bob Phillips
gt;
gt; (remove nothere from email address if mailing direct)
gt;
gt; quot;countrygirl0712quot; gt; wrote in
gt; message ...
gt; gt; I came into work this morning very anxious to try the formula and it
gt; worked
gt; gt; great. I put it in the cell that I wanted the answer in like this
gt; gt; =sum(k5*1.5) and it worked great. Thank you so much for your help.
gt; gt;
gt; gt;
gt; gt; quot;Bob Phillipsquot; wrote:
gt; gt;
gt; gt; gt; =G5*1.5
gt; gt; gt;
gt; gt; gt; --
gt; gt; gt; HTH
gt; gt; gt;
gt; gt; gt; Bob Phillips
gt; gt; gt;
gt; gt; gt; (remove nothere from email address if mailing direct)
gt; gt; gt;
gt; gt; gt; quot;countrygirl0712quot; gt; wrote in
gt; gt; gt; message ...
gt; gt; gt; gt; I am trying to get an overtime rate to automatically calculate in an
gt; excel
gt; gt; gt; gt; spreadsheet. I want to take the hourly rate in one cell divide it by
gt; 2
gt; gt; gt; and
gt; gt; gt; gt; then add the hourly rate to the rate I got by dividing and put that
gt; total
gt; gt; gt; gt; into another cell. Example: Cell G5 is hourly rate of $10.00. I
gt; want to
gt; gt; gt; gt; divide that by 2 which will give me $5.00. I want to add the $10.00 amp;
gt; gt; gt; $5.00
gt; gt; gt; gt; together giving me $15.00 and I want that to go into say cell K5.
gt; Does
gt; gt; gt; gt; anyone know how to do this?
gt; gt; gt;
gt; gt; gt;
gt; gt; gt;
gt;
gt;
gt;
- Jun 04 Wed 2008 20:44
Divide a cell by 2 and then add that together
close
全站熱搜
留言列表
發表留言