Installing formula for entire  Column

Im putting together a wholesale business and want to format a column so that when I enter a price in column D column E automatically calculates and additional 15% for Freight. So As I proceed down each row with additional items when I enter the price of each item in Column D the landed cost of the good(with the additional 15%) automatically appears in column E... I know how to format each cell individually but want to format all the cells in the column at the same time.

muleneck,
You said you wanted to calculate a new price including freight when you entered a basic price. So suppose you are entering this basic price in B3. Then your new price in, say, C3 would be:
=IF(B3="","",1.15*B3). This says, if there is no price value in B3, leave the cell (C3) blank. But if the price cell has a value, find the new price by adding 15% (.15) to that price or 1.15 times the original price. This lets you add rows not yet in use without seeing results of the calculation. But it's there when you enter a price.
pw
Message was edited by: pw1840

Similar Messages

  • Help with Appleworks-Spreadsheet - "Dragging down formula for entire column

    I have Appleworks 6 and am attempting to duplicate what I can do in Excel - Namely, entering a simple formula (=a1*.20) and dragging the lower righthand corner down to duplicate for the entire column. I know that Appleworks doesn't mimic many of Excel's features but am wondering what the Apple variation of this is?
    Thanks,
    Roberta

    You can "Fill Down" (or Fill Right) from the Calculate menu. Enter your formula, text, etc. it the first cell, click on that cell & drag the cursor until all of the cells you want to populate are highlighted, the choose your fill. Unless the original formula has absolute references, the filled formulas will be relative to the original cell. Say C1 is the first cell & the formula is =A1+B1, filling down from C1, the formula in C6, for example, will be =A6+B6.
    Peggy

  • Apache POI- HSSFDataValidation Formula Validation for Entire column

    Hello,
    I have been looking HSSFDataValidation and was able to run the sample below.
    My requirement is I need to apply this formula for Entire column to achieve the need like
    When user enters data in col2 (B) of greater than the number specified in col1 (A) and then show the ErrorBox.
    I am able to get the formula working through code only for first cell as per below code... I want it to dynamically apply for the entire column.
    Please suggest...
       1. import java.io.File; 
       2. import java.io.FileOutputStream; 
       3. import java.util.ArrayList; 
       4. import org.apache.poi.hssf.usermodel.DVConstraint; 
       5. import org.apache.poi.hssf.usermodel.HSSFDataValidation; 
       6. import org.apache.poi.hssf.usermodel.HSSFSheet; 
       7. import org.apache.poi.hssf.usermodel.HSSFWorkbook; 
       8. import org.apache.poi.hssf.util.CellRangeAddress; 
       9. import org.apache.poi.hssf.util.CellRangeAddressList; 
      10. import org.apache.poi.ss.usermodel.Cell; 
      11. import org.apache.poi.ss.usermodel.Row; 
      12.  
      13. public class TestThis{  
      14. public static void main1(String[] args) { 
      15.         // New Workbook.  
      16.         File outputFile = new File("C:/mamatha.xls"); 
      17.         try { 
      18.             
      19.             FileOutputStream fos = new FileOutputStream(outputFile); 
      20.             HSSFWorkbook workbook = new HSSFWorkbook(); 
      21.             HSSFSheet sheet = workbook.createSheet("Validation"); 
      22.             Row row = sheet.createRow(0); 
      23.             Cell cell = row.createCell(0); 
      24.             cell.setCellValue(5); 
      25.             cell = row.createCell(1); 
      26.             cell.setCellValue("good"); 
      27.             row = sheet.createRow(1); 
      28.             cell = row.createCell(0); 
      29.             cell.setCellValue(7); 
      30.             cell = row.createCell(1); 
      31.             cell.setCellValue("now"); 
      32.  
      33.             //String formula = "IF(LEN($B$1) > $A$1, FALSE, $B$1)"; 
      34.             String formula = "IF(LEN($B$1:$B10) > $A$1:$A10, FALSE, $B$1:$B10)"; 
      35.             CellRangeAddressList addressList = new CellRangeAddressList(); 
      36.             addressList.addCellRangeAddress(0, 1, 3, 1); 
      37.             DVConstraint constraing = DVConstraint.createFormulaListConstraint(formula); 
      38.  
      39.             HSSFDataValidation dataValidation = new HSSFDataValidation(addressList, constraing); 
      40.             dataValidation.setEmptyCellAllowed(true); 
      41.             dataValidation.setShowPromptBox(true); 
      42.             dataValidation.setSuppressDropDownArrow(false); 
      43.             dataValidation.createErrorBox("Invalid input !!", " Length of Col B > colA "); 
      44.             sheet.addValidationData(dataValidation); 
      45.             workbook.write(fos); 
      46.         } catch (Exception e) { 
      47.             System.out.println(e); 
      48.         } 
      49.     } 
      50. }  Thanks
    Mamatha
    Edited by: user8984775 on Mar 17, 2011 11:20 PM
    Edited by: user8984775 on Mar 17, 2011 11:22 PM

    user8984775 wrote:
    My requirement is I need to apply this formula for Entire column to achieve the need like
    When user enters data in col2 (B) of greater than the number specified in col1 (A) and then show the ErrorBox.
    I am able to get the formula working through code only for first cell as per below code... I want it to dynamically apply for the entire column. Well I'm certainly no expert on POI, but that looks like a very odd formula to me.
    When you "pull" a formula down a column, Excel automatically changes the formula for each row, but because you've fixed both the column AND the row ($A$1), it'll be the same in all cases.
    I don't know if POI allows that sort of "auto-generate" for formulas, but if so try something like $A1 instead; otherwise I suspect you'll need a different formula for each row.
    Winston

  • Large datasets...paste a formula into entire column

    I have a large data set....>40,000
    How do I past a formula to an entire column?
    e.g. Score a value using "if/then" logic to the entire dataset
    thanks
    Ryan

    You said "entire column" but maybe you meant "entire column except for header and/or footer rows"?
    If have header cells to avoid, do what Wayne said but after selecting the entire column, Command Click on the header cell(s) to deselect them. If you have footer rows, scroll to the bottom and deselect them too.

  • Apply formula to entire column

    I am putting together a spreadsheet using Numbers 09.  I can apply a formula to an individual cell. I want to add the revenue in C2 + E2 to give me a sum in F2.  What I want to do is apply the formula to all of the cells in  Column F.    I know there is a way to apply a formula for every cell in Column F as i have done this before.  I can't remeber how I did it.  Any suggestions?

    Waughaw,
    There are two ways to do this:
    1. Enter the expression in F2. In your case the expression would be:
    =C+E
    Copy the F2 Cell. To do this reliably, you can click off F2, then click once on F2 to highlight the cell (not the content of the cell) and Command-C.
    Then Click on the Column Tab (the letter F in this case). This Selects the entire column. Command-Click on the Header cell to De-Select just that cell. Finally, Command-V. Your formula will now be inserted in every cell of Column F except the Header Cell.
    2. Enter the expression in F2.
    Again, the expression will be C+E
    Select the cell F2, as  above, and then examine the border of the cell.
    There will be a small open circle in the lower right corner of the cell. That's called the Fill Handle.
    Drag the Fill Handel to the bottom of the column.
    That's it.
    Jerry

  • Formula for ascending column of numbers

    Hi,
    I never use Numbers so forgive a crazy simple question.
    I have a list of names and other details in Numbers. I'd like to add a column to the very left that, for each row, has a number corresponding to each "record".
    These numbers would ascend from 1, as each row ascends.
    What would the formula for this be? I hate to have to enter each manually. There are hundreds of records.
    Thanks so much for your help.

    Is this what you are wanting to do:
    Autofill cells
    You can quickly add the content from selected cells to adjacent cells without typing it. You can also fill a row or column with a logical sequence of data—for example, a series of digits, dates, or letters.
    Do any of the following:
    Autofill the content from one or more cells into adjacent cells: Select the cells with the content you want to copy, then move the pointer over a border of the selection until a yellow autofill handle appears. Drag the handle over the cells where you want to add the content.Any data, cell format, formula, or fill associated with the selected cells is added, but comments aren’t. Autofilling overwrites existing data with the value you’re adding.
    Autofill sequential content or patterns into adjacent cells: Type the first two items in the series in the first two body cells of the row or column you want to fill; for example, type A and B. Select the cells, move the pointer over a border of the selection until a yellow autofill handle appears, then drag the handle over the cells you want to fill.You can also autofill cells using a pattern of values. For example, if two selected cells contain 1 and 4, the values 7 and 10 are added when you drag over the adjacent two cells (values are incremented by 3).
    Autofilling doesn’t set up an ongoing relationship among cells in the group. After autofilling, you can change the cells independently of each other.
    When you autofill cells, any formulas that refer to those cells are updated automatically to use the new value.

  • Formula for multiple columns in a new table

    Hi,
    I've been using Numbers '08 for a while, but I've only been using rudimentary formulae such as "SUMIF" and "WEEKDAY." Recently I've been trying to put Numbers to better use. One major problem I've run into while writing a formula is this (I'm sure the question has been asked, yet I've searched the forums to no avail):
    I want to have two tables -- the first table is where I want to input my information; the second table I would like to be able to manipulate that information. For instance, in the first table I have (apologies, but I'm not sure how to incorporate a screenshot into my text):
    Table 1
    Date Color Location Minutes
    8/5 Blue Rome 60
    8/7 Green Paris 90
    8/7 Green Rome 45
    8/8 Blue Paris 120
    8/8 Blue Paris 30
    8/9 Blue Rome 90
    8/9 Green Paris 60
    Now, in Table 2, easily enough I am able to write a formula (using "SUMIF") for the number of minutes I've spent in Rome, but how do I write a formula to show how much time I've spent in Paris while Green? Table 2 right now is looking something like:
    Table 2
    ........Time Blue Green
    Paris 300 error error
    Rome 195 error error
    Is this a job for "VLOOKUP"? Do I need to make auxiliary columns? I have many such computations I would like to be able to perform in multiple tables from one source (Table 1). Any guidance would be much appreciated.

    With Numbers '09 you would use SUMIFS() but with Numbers '08 you must use auxikiary columns.
    In Tableau 1
    in column E the used formula is:
    =IF(AND($C=Tableau 2 :: $A$2,$B=Tableau 2 :: $C$1),$D,"")
    in column F it is:
    =IF(AND($C=Tableau 2 :: $A$3,$B=Tableau 2 :: $C$1),$D,"")
    in column G it is:
    =IF(AND($C=Tableau 2 :: $A$2,$B=Tableau 2 :: $D$1),$D,"")
    in column H it is:
    =IF(AND($C=Tableau 2 :: $A$3,$B=Tableau 2 :: $D$1),$D,"")
    In Tableau 2
    in B2 and B3 the formula is:
    =SUMIF(Tableau 1 :: C,"="&$A,Tableau 1 :: D)
    in C2 it is: =SUM(Tableau 1 :: E)
    in D2 it is: =SUM(Tableau 1 :: F)
    in C3 it is: =SUM(Tableau 1 :: G)
    in D3 it is: =SUM(Tableau 1 :: H)
    Yvan KOENIG (VALLAURIS, France) mardi 1 septembre 2009 16:52:31

  • Formula for If column A is not Food or Diesel

    Hi
    I have two columns an Item column which lists Food, diesel, cash, boiler etc and an Amount column. What I want to do is add everything up in the Amount column apart from the Food and Diesel is there a formula to do this?
    Thanks

    Really easy when we have read carefully the iWork Formulas and Functions User Guide.
    Assuming that the table "Tableau 1" contain the products names in column A and the amounts in column B, in the cell A1 of the table Tableau 2 insert:
    =SUM(Tableau 1 :: B)-SUMIF(Tableau 1 :: $A,"=Food",Tableau 1 :: B)-SUMIF(Tableau 1 :: $A,"=Diesel",Tableau 1 :: B)
    which means :
    sum every cells of column B
    substract sum of food's amounts
    substract sum of diesel's amounts.
    Yvan KOENIG (VALLAURIS, France) lundi 22 mars 2010 12:03:58

  • Why won't 'IF-Statement' Formula work for an entire column?

    I am trying to make an IF formula subtract a cells value from another cells value, creating a 'balance'.  The formula is working when selecting one cell for each part of the formula, but is not working when I try to use the formula for multiple cells (entire column).  The formula I am using for single cells is as follows:
    =IF(Monthly Timeline :: F2="Citi",Monthly Timeline :: D2+1000,1000)
    The formula works with way, when I select the pop-up menu in F2 to say "Citi" it will add the value of D2 to 1000 and give me a proper solution, but when I change it to the entire column as follows:
    =IF(Type="Citi",Amount+1000,1000)
    The formula for entire columns 'Type' and 'Amount' does not produce a proper solution, it will display 1000, no matter how many values in the 'Amount" column have "Citi" selected in the pop-up menu in the 'Type' column.
    I know there is a way to make this formula work but I can't seem to figure out what I am doing wrong  any help would be greatly appreciated.
    Thanks!

    the function if() does not apply to a column.  the functions sumif() and sumifs() do apply to columns.  You can get detailed information regarding these functions in the function browser.  To open the function browser select the menu item:
    "View > Show Function Browser"
    OR dowload the free function reference from Apple here:
    http://support.apple.com/manuals/#productivitysoftware
    The document is titled "iWork '09 Formulas and Functions User Guide"
    There is also a User Duide you may find helpful: "Numbers '09 - User Guide"

  • How can I sum up raws? the sum function seems to work for columns only and right now I have to create a separate formula for each raw

    How can I sum up raws? the Sum function seems to work only on columns. Right now I have to create a separate formula for each raw

    Hi dah,
    "Thanks, but can I do one formula for all present and future raws? as raws are being added, I have to do the sum function again and again"
    You do need a separate formula for each group of values to be summed.
    If the values are in columns, you need a copy of the formula for each column.
    If the values are in rows, you need a copy of the formula for for each row.
    If you set up your formulas as SGIII did in his example (shown below), where every non-header row has the same formula, Numbers will automtically add the formula to new rows as you add them.
    "Same formula" in this context means exactly the same as all the formulas above, with one exception: the row reference in each formula is incremented (by Numbers) to match the row containing the formula.
    Here the formula looks like this in the three rows shown.
    B2: =SUM(2)
    B3: =SUM(3)
    B4: =SUM(4)
    That pattern will continue as rows are added to the table.
    Also, because the row token (2) references all of the non-header cells in row 2, the formula will automatically include new columns as they are added to the table.
    Regards,
    Barry

  • Different formulas for different rows in Formula Column

    Is it possible? If possible then how?

    Hi
    Yes in FR it is possible, you can apply a formula to entire columns, entire rows or specific individual cells. There is then a radio button that allows you to toggle between which formula is used (e.g. where a column formula and row formula intersect).
    I haven't used the new version of Planning yet to know about formulae in web forms I am afraid.
    Regards
    Stuart

  • Creating a header for rows/columns in cross-tab with syntax

    Hi,
    The issue is creating strings for rows or columns' headers. How can I create a formula field which contains more than one seperate string. Such as "aaa", "bbb" and "ccc" are headers and they should be in seperate columns. In short, they will behave like characteristics of one of my query's field but they are just headers of the columns.
    ..............aaa...bbb...ccc....
    row1.......x.......x........x.....
    row2.......y.......y........y.....
    Also there is another issue about the formulation again. Is there any operator that does the same job as " \n" which is used in C languages to break the line?
    before:
    aaabbb
    after:
    aaa
    bbb

    Hi Carl;
    Firstly, thanks for answering my question. To explain my problem there are two options ahead(for my first question); first one is writing down the actions step by step, the second one is posting an image file(jpeg etc) to visualize it. I think the first one will be enough. If not tell me
    Step 1- Create a cross-tab and right click and select cross-tab expert.
    Step 2- Click the button "New Formula" and write down any word(such as "Sales") between two -"- sign to make it string.Then save and close.
    Step 3- Drag and drop the created formula to "columns" section and fill the other necessary sections with your database's(such as xtreme.mdb which is famous for crystal users) fields.Don't forget to add another column value to "columns" section, since our formula has no link to database.
    Step 4- Then click OK to save the changes and lets preview the cross-tab.The result will have one top column and his child or children(that depends on your data). And this top column is behaving like a header not a field.
    Now turn the second step but write down a formula for 2 columns or more.For exmple "Sales" and "Profit".So the result will have 2 top columns and their child/children.
    My question is "what is the formula for 2 or more columns?"
    Also I couldn't get the answer for my second question. What is the meaning of expressions "\c" and ChrW(13)?
    Edited by: diabolus on Oct 30, 2009 9:39 AM

  • How to apply =Hyperlink() to entire column

    I created the following formula:   =HYPERLINK("http://www.somewhere.com/search.aspx?kw="&C2, C2),   where C2 is relative to the cell in which apply the formula. So in effect I am attempting to create relative Hyperlink URLs down a column.   Here's my problem, I cannot copy-and-paste this formula to entire column because the cell I need to copy is now a hyperlink.

    Open the hyperlink inspector:
    and check the box "Make all hyperlinks inactive".  Now copy and paste the formula, then select the whole column and paste

  • Can I have a product formula in an entire column that will multiply the previous two columns?

    Trying to enter a product formula for an entire column that will multiply the previous two columns without having to select each row of two cells and clicking on "product".  This is tedious.  Thanks.

    My own tip to apply fill down to a column :
    click the tab at top of the column to select the entire column
    press command then click the header cells to unselect them
    Trigger Table > Fill > Fill Down
    It's the kind of info which is available in Numbers User Guide.
    It's always good practice to Read The Free Manual.
    Yvan KOENIG (VALLAURIS, France) mercredi 21 septembre 2011 21:07:53
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?

    How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?
    For example: I have formulas in columns D and F that relate to columns C to CU
    If I want to move one column from one position to another (say S to T), the formula loses the colums that was moved, i.e. it doesn't recognize it has moved, rather sees it as deleted...  How can I do this without distorting the formula?

    Thanks for the feedback.
    If I often urge askers to look at the available resources, it's because  a large range of questions asked in the forums are already answered in these documents.
    As they are PDFs, they are easy to search in.
    CAUTION
    Download them while they are available.
    Given what is delivered with iBooks Author, I'm afraid that we will not get such easy to use documents.
    Searching infos in the  iBooks Author documentation available on line is awfully cumbersome and a lot of embedded links are wrongly flagged this way. In the Help files they aren't links but underlined strings.
    It seems that the tool used to generate the web pages was wrongly configured.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

Maybe you are looking for

  • Mail app keeps re-caching all messages when it starts

    Hello In past 10 days i have a very big problem which gives me headaches already. The problem is ( i did not change anything!) mail.app keeps re-caching all messages and attachments everytime i start the app. I have over 40.000+ mails so you do the m

  • 1067: Implicit coercion of a value of type Class to an unrelated type flash.display:MovieClip

    Hello, i've a class named LoadImages with the code: package     import flash.display.MovieClip;     import flash.events.MouseEvent;     import flash.events.Event;     import flash.display.Loader;     public class LoadImages extends MovieClip        

  • Ethernet no work

    My ethernet port it doesn't work, with my new brodband modem, but with Windows Laptop the modem and port work perfect, what I can do?

  • Video player not working - C55t - A5218

    Help, I can't get my laptop  to play a DVD. I've tried uninstalling the driver and letting windows reainstall at reboot, but that didn't help. My Toshiba video player also will not load completely. It will come up, but the blue wheel just keeps turni

  • Post Capitalisation

    Hi, While posting an entry to asset for Post capitalisation by Tcode ABNON, i got little confusion. Which dates are to be used in the following input fileds? Document Date Positng Date Orig Val date I am sure that, by posting this transaction system