How do you set one column equal to another?

how do i?
at cell B2 i would like to enter a number. in column C, i would like to have the same value for c2 through c11 cells. so, c2 through c11 i would like the value .2 in each cell. in column D, i would like the values found when columns B and C are multiplied. i would like the value of B3 to be the value found in D2, b4 to be the value found in D3, b5 to be value found in D4, etc.
is that possible to do using formula for columns? or something, well short of hand coding each cell.
thanks,
g.

let me try to clear up what i was asking, but no guarantees here.
i was trying to create a spreadsheet that would allow me to calculate the interest on an initial amount of money. i was a little frustrated when i wrote the post. i didn't understand how to do it using a construct like (D2:D20) = (B2:B20) * (C2:C20), which as far as i can tell is incorrect syntax, grammar, etc., just wrong. really wrong!
i'm not an accountant, as you can ready tell. i think though this is called simple interest.
ok, here's what i was looking to do, by way of an example:
given $1000 and an interest rate/ or rate of growth of 20% annually, calculate the amount of money one would have after 25 years. compounded annually.
$1000 * 0.20 = 200
$1200 * 0.20 = 240
$1440 * 0.20 = 288
$1728 * 0.20 = 345.60
$26,623.33 * 0.20 = 5,326.67
i realized what asked for was not this, well after i had posted and tried my post request by hand. so
i really understand the confusion.
i sure there is a built-in function for this, but i don't think i would have recognized it, because i don't know the financial terminology.
using the copying and pasting method, i built the first two line above and decided it had to be a better way, solving this kind of problem is what spreadsheet programs do... i copied B3 to cell B4, i copied cell C3 to cell C4, and i copied D3 to D4. copied and pasted. to my surprise, of course, because i had not read the manual completely, it copied the function to the cells and used the correct last values. (confusing here, but i hope you follow) after seeing that, i copied B4 and selected B5 - B21 and pasted, B4 to those selected B cells. i copied C4 and selected C5 - C21 and pasted, C4 to those C cells i had selected. that put 0.20 into each. i copied D4 and selected D5 - D21 and pasted to those selected D cells.
i seems to have worked.
i do have a question though. let's say instead of using 0.02 in column C i used 1.2. this would give me the amount of money i would have without having to add the initial to the interest made.
1000 * 1.2 = 1200
how do i assign the value, 1200, to another cell without using the copy and paste method? or is copying and pasting the way to do these kinds of things.
thanks everyone,
g.

Similar Messages

  • Create a trigger/stored procedure to set one column equal to another

    Hey guys,
    I have two columns in a table, and when column A is updated or inserted, I need the database to automatically update column B (in the same table) to be equal to that. I can't create a trigger AFTER INSERT OR UPDATE, because it's the same table and it gives me the mutating tables error.
    Any help is appreciated.

    How have you defined your trigger? It sounds like you should just be able to do
    BEGIN
      :new.columnB := :new.columnA;
    END;I assume if you are getting a mutating table error that your trigger is trying to query the table. I don't see a need to query the table.
    Justin

  • How do you hyperlink one Pages document to another Pages document?

    How do you hyperlink one Pages document to another Pages document?

    Feature removed from Pages 5, along with over 90 others, by Apple.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • How do you make one computer slave to another?

    My cd-rom doesnt work, and I want to install some programs using my friend´s cd-rom.
    How do you set the computers up so that his computer can be the slave (or mine???) and that the software is being installed onto my disk?
    Is there a shortcut when starting up the machine?
    Thanks,

    See if the information in this document is useful to you:
    http://docs.info.apple.com/article.html?artnum=58583
    Tuttle

  • How do you keep bottom columns from overlapping another div

    I am using DW CS3 and am following instructions on making first web page everything is fine till I get to positioning the columns at the bottom of page when i try and set a css rule to position left column the column overlaps the previous div the instructions i am using are from adobe http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt2_08.html here is the code that I have up to the point that I put in the rule for the left column for the design page   
    <div id="container">
       <div id="banner"></div>
       <div id="main_image></div>
       <div id="left_column">Content for id"left_column" Goes Here</div>
       <div id="column_container">
           <div id="right_column">Content for id"right_column" Goes Here</div>
           <div id="center_column">Content for id"center_column" Goes Here</div>
       </div>
    </div>
    On the CSS page that is attached to it the code is as follows:
    #container  {
    width:  968 px;
    background:  FFFFFF;
    margin:  0 auto:
    padding-left:  10px:
    padding-right:  10px:
    overflow:  hidden;
    #banner  {
    background-image:  url(images/banner.gif);
    height:  100px;
    width:  968px;
    #main_image  {
    background-image:  url(images/main.jpg);
    height:  376px;
    width:  968px;
    and then I am suppossed to do a box with width of 316 and float left when I do this it floats left and goes down in size but also goes up into the top of my main image why is this happening?

    Zabberwan is correct  :-)   If the basic css is not written correctly, the page will not display as intended.  You are using a colon (:) instead of a semi-coon (;) to close off the style rule... in addition, the #hash tag was missing from the background rule.
    This is what your code should look like before proceeding with the next step of the tutorial:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #container {
        width:  968px;
        background: #FFFFFF;
        margin:  0 auto;
        padding-left: 10px;
        padding-right: 10px;
        overflow: hidden;
    #banner {
        background-image: url(images/banner.gif);
        height:  100px;
        width:  968px;
    #main_image {
        background-image: url(images/main.jpg);
        height: 376px;
        width: 968px;
    </style>
    </head>
    <body>
    <div id="container">
      <div id="banner"></div>
      <div id="main_image></div>
       <div id="left_column">Content for id"left_column" Goes Here</div>
      <div id="column_container">
        <div id="right_column">Content for id"right_column" Goes Here</div>
        <div id="center_column">Content for id"center_column" Goes Here</div>
      </div>
    </div>
    </body>
    </html>

  • How to create a one-column collection from another multi-column collection?

    Hi,
    I am describing a SQL statement to get it's column list:DECLARE
      cur     NUMBER;
      col_cnt INTEGER;
      rec_tab DBMS_SQL.DESC_TAB;
      type my_colls_t  is table of varchar2(30);
      my_colls    my_colls_t;
    BEGIN
      cur := DBMS_SQL.OPEN_CURSOR;
      DBMS_SQL.PARSE(cur, 'SELECT * FROM my_view' , DBMS_SQL.NATIVE);
      DBMS_SQL.DESCRIBE_COLUMNS(cur, col_cnt, rec_tab);
    END;Now I need to get out the columns list from rec_tab.col_name and put it to my_colls collection. Have Oracle any build-in to do that? If not, what is the best way to do this?
    Thanks in advance,
    JackK

    JackK wrote:
    Hi,
    I am describing a SQL statement to get it's column list:DECLARE
    cur     NUMBER;
    col_cnt INTEGER;
    rec_tab DBMS_SQL.DESC_TAB;
    type my_colls_t  is table of varchar2(30);
    my_colls    my_colls_t;
    BEGIN
    cur := DBMS_SQL.OPEN_CURSOR;
    DBMS_SQL.PARSE(cur, 'SELECT * FROM my_view' , DBMS_SQL.NATIVE);
    DBMS_SQL.DESCRIBE_COLUMNS(cur, col_cnt, rec_tab);
    END;Now I need to get out the columns list from rec_tab.col_name and put it to my_colls collection. Have Oracle any build-in to do that? If not, what is the best way to do this?
    Thanks in advance,
    JackKYou can't do something like
    my_cols := rec_tab.column_name;You need to loop throught the collection and assign each element. Like this.
    for i in 1.. rec_tbl.count
    loop
      my_cols(i) := rec_tbl(i).column_name;
    end loop;

  • In a tubular form: how do you make one combo box reflect another

    For example:
    if there are two fields, one with combo box with bread, meat, juice and I select juice, I and the contents of another combo box in another field to say Orange, grape, lemon.
    field one field two
    bread orange
    meat grape
    juice lemon
    in field one there is just those 3 but in the table representing two there are many such as types of bread and meat and juice, all three.
    Hope you can understand this example. Thanks for your help.

    Your description is not very clear but looks like you want cascading select lists, where 2nd select list is populated based on value selected in the first select list.
    AJAX is a good solution if you are comfortable with it. Since I'm not very familiar with that, I end up using pl/sql.
    Someone had asked similar question few days back, and i had provided a detailed answer. You can check it out at:
    Re: select menu depends from selection
    Hope this helps.

  • Pricing: How do you make one cntyp supersede/override another

    I have two CnTyp in my pricing procedure. The user wants that when she enters the price in Cntyp A it should override the existing Price Condition B and this should reflect in the Gross Value calculation
    This should the same like Pr00 and Pr01. Where the presence of PR01 deactivates PR00. However in this case I want it to do vice versa.

    Both are set to 'C' in customizing. However it is still not working the way we want it too.
    Right now I have condition A that deactivates condition B, if A condition record exists. However I want it the other way round, where Condtion B if entered should deactivate A.
    I am thinking it would have to do with the AltCal and AltBv fields. I just don't know the correct combo to get it working
    This is similar to how PR01 overrides PR00, however I need this to work the other way round

  • How do I use the time capsule to share itunes music between multiple apple devices? Also, is it possible to control the music on one device using another, and how do you set this up?

    How do I use the time capsule to share itunes music between multiple apple devices? Also, is it possible to control the music on one device using another, and how do you set this up?

    unless i'm missing something, i think you got mixed up, this is easy google for walk throughs
    i'm assuming this is the new 3tb tc AC or 'tower' shape, if so, its wifi will run circles around your at&t device
    unplug the at&t box for a minute and plug it back in
    factory reset your tc - unplug it, hold down reset and keep holding while you plug it back in - only release reset when amber light flashes in 10-20s
    connect the tc to your at&t box via eth in the wan port, wait 1 minute, open airport utility look in 'other wifi devices' to setup the tc
    create a new wifi network (give it a different name than your at&t one) and put the tc in bridge mode (it may do this automatically for you, but you should double check) under the 'network' tab
    login to your at&t router and disable wifi on it
    add new clients to the new wifi network, and point your Macs to the time machine for backups

  • How do you set up separate facetime accounts under one apple id

    how do you set up separate facetime accounts under one apple id

    This is possible, but I haven't found any official Apple topics about it, so I will share a nice web article about it on a Mac fan website:
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    Hope this helped!

  • How do you set up two different ipads on one computer ?

    I purchased a new ipad for my wife and want to get her started but we both use one imac as our desktop system.  How do you set up two different uses on one computer.
    Thanks,
    Dave

    Other options not covered in the article:
    1) You can plug both in under the same computer username and same iTunes Apple ID and give each device it's own name. You should be able to manage them as separate devices with different media, apps and screen layouts. All of your media would be in a common pool, though.
    2) Under one computer username, you can login and logout of two different iTunes Apple IDs. This option is cleaner with two computer usernames but it can be done with one.

  • How can you set up more than one device on iTunes. I have an iPad, iPod, itouch and iPhone. I don't want the same on all devices.

    How can you set up more than one device on iTunes? I have an iPad, iPod, itouch and iPhone. I don't want the same on all devices. I have all my music/videos on iTunes on my mac book pro. Can you set up separate folders for each device and drop in what ever music/videos from the main iTunes library?

    In itunes it is called syncing and you can choose exactly what content to sync to all devices and it can be different for all of them
    How to sync

  • How do you set password so no one else can acces to you're internet on a wrt54gl?

    Yeah the subject says it all. How do you set password so no one else can acces to you're internet on a wrt54gl?

    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter... Leave Username blank & in Password use admin in lower case...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab
    - Wireless Network mode should be mixed...
    - Provide a unique name in the Wireless Network Name (SSID) box in order to differentiate your network from your neighbours network...
    - Set the Wireless channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Please make a note of Wireless Network Name (SSID) as this is the Network Identifier...
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WEP, Encryption should be 64 bit.Leave the passphrase blank, don't type in anything... Under WEP Key 1 type in any 10 numbers please(numbers only and no letters eg: your 10 digit phone number) and click on save settings...
    Please make a note of WEP Key 1 as this is the Security Key for the Wireless Network...

  • How do you set a Canon Pixma MP280 All-in-One Photo Printer , to mirror image for shirt transfers ?

    How do you set a Canon Pixma MP280 All-in-One Photo Printer , to mirror image for shirt transfers ?  Im really having  hard time so any help needed . 

    Hello. When printing on T-Shirt Transfer media, please change the Media Type setting to T-Shirt Transfer before printing.  This can be specified in the print menu of your software. If you need assistance with locating the Media Type options, please tell us what version of Windows or Mac OSX is on your computer. This didn't answer your question or issue? Find more help at Contact Us.  

  • How can I modify one column of current and next record depending of some criteria?

    Having DDL
    CREATE TABLE #ServiceChange(
    [ID] [int] identity(1,1),
    [SHCOMP] [char](2) NOT NULL,
    [SHCRTD] [numeric](8, 0) NOT NULL,
    [SHCUST] [numeric](7, 0) NOT NULL,
    [SHDESC] [char](35) NOT NULL,
    [SHTYPE] [char](1) NOT NULL,
    [SHAMT] [numeric](9, 2) NOT NULL,
    [CBLNAM] [char](30) NOT NULL,
    [GROUPID] [char](2) NULL
    And original and desire data in below link
    https://www.dropbox.com/sh/bpapxquaae9aa13/AADnan31ZASublDjN7sa2Vvza
    I would like to know how can I modify one column of current and next record depending of some criteria using SQL2012?
    The criteria is:
    Type should always flow F->T
    if current abs(amount)> next abs(amount) then groupid = 'PD'
    if current abs(amount)< next abs(amount) then groupid = 'PI'
    there is no case when those amounts will be equals
    where current(custid) = next(custid) and current(service) = next(service) and groupid is null
    Any help will be really apreciated.
    Thank you

    I tried that and got this error
    'LAG' is not a recognized built-in function name.
    You said you were using SQL 2012, but apparently you are not. The LAG function was added in SQL 2012. This solution works on SQL 2005 and SQL 2008:
    ; WITH numbering AS (
       SELECT groupid,
              rowno = row_number()  OVER (PARTITION BY custid, service ORDER BY date, id)
       FROM   #ServiceChange
    ), CTE AS (
       SELECT a.groupid,
              CASE WHEN abs(a.amount) < abs(b.amount) THEN 'PD'
                   WHEN abs(a.amount) > abs(b.amount) THEN 'PI'
              END AS newgroupid
       FROM  numbering a
       JOIN  numbering b ON b.custid  = a.custid
                        AND b.service = a.service
                        AND b.rowno   = a.rowno - 1
    UPDATE CTE
    SET   groupid = newgroupid
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • Black border around bg image

    Hi I have given up on the random bg images for my client's site at www.carterbrands.com  I have allocated an image per page.  I am getting a black border around the image.  I dimly remember that there is a way around this but I have forgotten what it

  • Duplicate top level entries in Data Control Palette

    Hi I'm not sure when this happened, but I have just discovered that my local facade is now appearing twice in the Data Control Palette. Anyone know why this should be? I have made a stab in the dark and checked the DataControls.dcx and similar files

  • I have this bookmark icon down low near the trash can. How can I get rid of it? I am using Ubuntu 11.04.

    I have this bookmark icon down low near the trash can in Ubuntu 11.04. How can I get rid of it?

  • Popular NIC for Intel Solaris 8

    Hi List, Can anyone of you give me the model and name of popular NIC which has a driver in Intel Solaris 8. I checked out the HCL and it really does not help. Thanks Vasanth

  • Off-line ACS Configuration

    I need to apply a basic configuration to an ACS appliance (5.2) then ship it off to another location to be installed.  The initial installation script calls for you to configure the IP address, DNS, etc ... then pings the gateway and DNS before reboo