Have cell equal the value not the formula

Hi there, I have the below formula which calculates the check digit on a UPC from another cell. Is it possible to have a cell reference this formula, without showing the formula, and only show the answer? IE. I only want the result in the cell as though
it was keyed in there manually, as I want to be able to double click and copy the actual number. Thank you for any help.
=A41000&RIGHT(10-MOD(SUMPRODUCT(MID(A41000,{1,2,3,4,5,6,7,8,9,10,11},1)*{3,1,3,1,3,1,3,1,3,1,3}),10))

Hi Jim,
Thank you for the reply. 
Do I just put this number in VB on the corresponding tab and it should work?  I'm not sure how to get it to work. 
Also, in case I need to give more info, the column on the left is the number without the check digit, the number on the right is the cell with the check digit produced by the formula.  As I go down the list, I go to the next row when needed
using the corner of the cell (fill).  Hopefully I can get it so that the column on the right is not the formula, rather the actual value. 
12345654329
123456543294
12345654330
123456543300
12345654331
123456543317
12345654332
123456543324
12345654333
123456543331
12345654334
123456543348
12345654335
123456543355
12345654336
12345654337
12345654338
12345654339
12345654340

Similar Messages

  • Cell with boolean value not rendering properly in Swing (custom renderer)

    Hello All,
    I have a problem rendenring boolean values when using a custom cell renderer inside a JTable; I managed to reproduce the issue with a dummy application. The application code follows:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.lang.reflect.InvocationTargetException;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    import java.util.logging.Logger;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    * Simple GUI that uses custom cell rendering
    * @author josevnz
    public final class SimpleGui extends JFrame {
         private static final long serialVersionUID = 1L;
         private Logger log = Logger.getLogger(SimpleGui.class.getName());
         private JTable simpleTable;
         public SimpleGui() {
              super("Simple GUI");
              setPreferredSize(new Dimension(500, 500));
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setLayout(new BorderLayout());
         public void constructGui() {
              simpleTable = new JTable(new SimpleTableModel());
              simpleTable.getColumnModel().getColumn(2).setCellRenderer(new HasItCellRenderer());
              SpecialCellRenderer specRen = new SpecialCellRenderer(log);
              simpleTable.setDefaultRenderer(Double.class, specRen);
              simpleTable.setDefaultRenderer(String.class, specRen);
              simpleTable.setDefaultRenderer(Date.class, specRen);
              //simpleTable.setDefaultRenderer(Boolean.class, specRen);
              add(new JScrollPane(simpleTable), BorderLayout.CENTER);          
              pack();
              setVisible(true);
         private void populate() {
              List <List<Object>>people = new ArrayList<List<Object>>();
              List <Object>people1 = new ArrayList<Object>();
              people1.add(0, "Jose");
              people1.add(1, 500.333333567);
              people1.add(2, Boolean.TRUE);
              people1.add(3, new Date());
              people.add(people1);
              List <Object>people2 = new ArrayList<Object>();
              people2.add(0, "Yes, you!");
              people2.add(1, 100.522222);
              people2.add(2, Boolean.FALSE);
              people2.add(3, new Date());
              people.add(people2);
              List <Object>people3 = new ArrayList<Object>();
              people3.add(0, "Who, me?");
              people3.add(1, 0.00001);
              people3.add(2, Boolean.TRUE);
              people3.add(3, new Date());
              people.add(people3);
              List <Object>people4 = new ArrayList<Object>();
              people4.add(0, "Peter Parker");
              people4.add(1, 11.567444444);
              people4.add(2, Boolean.FALSE);
              people4.add(3, new Date());
              people.add(people4);
              ((SimpleTableModel) simpleTable.getModel()).addAll(people);
          * @param args
          * @throws InvocationTargetException
          * @throws InterruptedException
         public static void main(String[] args) throws InterruptedException, InvocationTargetException {
              final SimpleGui instance = new SimpleGui();
              SwingUtilities.invokeAndWait(new Runnable() {
                   @Override
                   public void run() {
                        instance.constructGui();
              instance.populate();
    }I decided to write a more specific renderer just for that column:
    import java.awt.Color;
    import java.awt.Component;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.table.DefaultTableCellRenderer;
    * Cell renderer used only by the DividendElement table
    * @author josevnz
    final class HasItCellRenderer extends DefaultTableCellRenderer {
         protected static final long serialVersionUID = 2596173912618784286L;
         private Color hasIt = new Color(255, 225, 0);
         public HasItCellRenderer() {
              super();
              setOpaque(true);
         @Override
         public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
              Component comp = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
              int desCol = table.convertColumnIndexToView(1);
              if (! isSelected && value instanceof Boolean && column == desCol) {
                   if (((Boolean) value).booleanValue()) {
                        comp.setForeground(hasIt);     
                   } else {
                        comp.setForeground(UIManager.getColor("table.foreground"));
              return comp;
          * Override for performance reasons
         @Override
         public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) {
              // EMPTY
         @Override
         protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
              // EMPTY
         @Override
         public void revalidate() {
              // EMPTY
         @Override
         public void validate() {
              // EMPTY
    } // end classBut the rendering comes all wrong (a String saying true or false, not the expected checkbox from the default renderer) and also there is a weird flickring effect as this particular boolean column is editable (per table model, not show here)...
    I can post the table model and the other renderer if needed (didn't want to put too much code on the question, at least initiallty).
    Should I render a checkbox myself for this cell in the custom renderer? I'm puzzled as I expected the default renderer part of the code to do this for me instead.
    Thanks!
    Edited by: josevnz on Apr 14, 2009 12:35 PM
    Edited by: josevnz on Apr 14, 2009 12:37 PM

    camickr
    Thats because the default render is a JLabel and it just displays the text from the toString() method of the Object in the table model.What I meant to say is that I expected the JCheckbox not a String representation of the boolean value.
    Thats because a different renderer is used depending on the Class of data in the column. Look at the source code for the JTable class to see what the "default >renderer for the Boolean class" is. Then you can extend that or if its a private class then you will need to copy all the code and customize it.At the end I looked at the code and replicated the functionality I needed. I thought than maybe there was a way to avoid replicating the same logic all over again in order to implement this functionality. Good advice, though.
    see you learned nothing from your last posting. This is NOT a SSCCE. 90% of the code you posted is completely irrelevant for the described problem. There is abosutelly no need to post the custom TableModel, because there is no need to use a custom TableModel for this problem. The TableModel has nothing to do with how a column is rendererd.The custom table model returns the type of the column (giving a hint to the renderer on what to expect, right?) and for the one that had a problem it says than the class is Boolean. That's why I mentioned it:
    public Class getColumnClass(int columnIndex) {
        // Code omited....
    You also posted data for 4 columns worth of data. Again, irrelevant. Your question is about a single column containing Boolean data, so forget about the other columns.
    When creating a SSCCE you don't start with your existing code and "remove" code. You start with a brand new class and only add in what is important. That way hopefully if you made a mistake the first time you don't repeat it the second time.That's what I did, is not the real application. I copy & pasted code in a haste from this dummy program on this forum, not the best approach as it gave the wrong impression.
    Learn how to write a proper SSCCE if you want help in the future. Point taken, but there is NO need for you to be rude. Your help is appreciated.
    Regards,
    Jose.

  • Wait for field to equal to value not working in Sharepoint desginer 2013

    Hi ,
    I have two Work flow
    WF1 & WF2
    In below image WF2 it will update a list column where WF1 work flow In Progress
    In WF1
    It wait for Other Task Parallel value equal to started.
    WF2 Update the list correctly but WF1 not work properly but
    when I update list Item then it works fine for WF1 .
    Please let me know if any thing wrong.
    Regards
    Sachin

    Hi cameron,
    We have two list as mention below
    Agent list -Attach WF1
    Task list-Attach WF2
    WF1 one wait for action change column value from WF2
    WF2 update a column value as show in fig above perfectly fine, where WF1 in waiting state to get the status.
    but status is already updated.
    When I have edit the same  item in which WF2 update its column value then my WF1 working fine for " wait for Other Task Parallel value equal to started" action in my Agent list.
    Regards
    Sachin

  • How to have logical expression with value '*' not wildcard '*'

    Hi ,
        I have requirement where i have to filter records based on a field with value  EQ '' but strangely it is taking wildcard '' in the production system. In the Dev system it is taken as exact value '' but behaves as a wild card in prod system. Please advice a sure shot change which will work in both the environment as i am on a strict deadline for this. Will a usage of CONSTANT work ? Constant : val   type c value "".
    Regards
    Tashi

    Hi,
    Check the bellow code which will help you in using wild card in searcg help.
    DATA: ls_selopt         TYPE ddshselopt,                                  
            ls_t006a          LIKE t006a.                                        
    TYPES:lv_range          TYPE char45.
    CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
          EXPORTING
            parameter         = lc_old_mat
          IMPORTING
            value             = lv_dummy
          TABLES
            shlp_tab          = shlp_tab
            record_tab        = record_tab
            selopt_tab        = lt_sel_opt
          CHANGING
            shlp              = shlp
            callcontrol       = callcontrol
          EXCEPTIONS
            parameter_unknown = 1
            OTHERS            = 2.
        IF sy-subrc <> 0.
          EXIT.
        ELSEIF NOT lv_dummy IS INITIAL.
          lv_old_filled = 'X'.
        real backend system ?
          MOVE 'I'          TO ls_old_mat_ranges-sign.
          MOVE 'EQ'         TO ls_old_mat_ranges-option.
          MOVE lv_dummy(10) TO ls_old_mat_ranges-low.
          APPEND ls_old_mat_ranges TO lt_old_mat_ranges.
        ELSEIF NOT lt_sel_opt[] IS INITIAL.
          lv_old_filled = 'X'.
          LOOP AT lt_sel_opt INTO ls_sel_opt.
          no select in case of 'all systems'
            IF ls_sel_opt-low EQ '*'.
              DELETE lt_sel_opt.
            ELSE.
            wildcards
              MOVE-CORRESPONDING ls_sel_opt TO ls_old_mat_ranges.
              APPEND ls_old_mat_ranges TO lt_old_mat_ranges.
            ENDIF.
          ENDLOOP.
        ENDIF.
    Regards,
    Goutam Kolluru.

  • The new Numbers 09-3.1, how do I Drag a formulas down to activate it n each cell in the column

    I am using Maverick OS X 9.1 numbers 09 (3.1) on an 2007 iMac how do I :
    1. Drag a formula down in a column so that it affects the cells below it with the same formula.
    2. I used to place a $ before a cell address and it would remain a constant function for the formula when dragged down. Can't seem to find out how to do it
    3. Is there a  manual or instructions for working with Numbers.  Numbers Help is a poor choice

    Hi Frosty,
    0) Numbers '09 is the previous version, which should still be installed on your computer. You may find it still useful, so I would strongly recommend NOT deleting it. The new version is Numbers 3.x Make sure you continue to specify which version you are using. It's useful information to anyone attempting to answer a question.
    1) Pretty much the same as you did in Numbers '09. The Fill Handle is now yellow, and shows in the center of the bottom of the selected cell containing the formula for filling down, and thi the center of the right edge for filling right. There's also a menu item—Autofill cells—found near the bottom of the Table menu.
    2) Now a set of menu selections (Preserve Row, etc.) in the contextual menu for the cell. I don't have N 3 installed, and don't recall the route to accessing that menu, so that detail will have to come in another's reply.
    3) So far there's only http://help.apple.com/numbers/mac/3.0/
    No downloadable pdf version as yet.
    You can get the iWork Formulas and Functions User Guide as a pdf file. (The link actually goes to a more general "productivity software" page which inlcudes links to the F&F guide. Functions supported in iWork '09 versions are covered. the functions introduced in Numbers 3 are not.
    Regards,
    Barry

  • Formula Question: What is the formula to find how many duplicates I have in my table of data. e.g Sally, Sally, Sally, Tom, Tom, Ben. Answer by formula Sally 3, Tom 2, Ben 1

    Example of Data:
    A1
    2222222345
    2222222345
    2222222345
    2222222345
    2222222346
    2222222346
    2222222347
    2222222347
    2222222347
    2222222347
    2222222347
    2222222347
    Examplae of answer I would like the formula to provide:
    I also can not manually type coullum A I need the formula to auto full that aswel. As there is to much data.
    A2
    B2
    2222222345
    4
    2222222346
    1
    2222222347
    6

    Hi Jessica,
    Here's my take on it, using the sample data in your original post, and using the same solution with the names in your question.
    In the Data table, column A contains the list of numbers in your original post. I've rearranged them in random order to demonstrate that the order of entry does not matter for this method.
    Data::Column B contains the names in your question, each assigned to one of the numbers in the body of your post.
    Column C contains an index showing the first occurrence of each distinct number in Column A. This index is used to fill both columns in the Summary by Number table.
    Column D contains an index showing the first occurrence of each distinct name in Column Bt. This index is used to fill both columns in the Summary by Number table.
    Both formulas are the same, except for the columns referenced (highlighted in the second formula below).
    Formula: Data::C2: =IF(COUNTIF($A$2:A2,A2)=1,MAX(C$1:C1)+1,"")
    Formula: Data::D2: =IF(COUNTIF($B$2:B2,B2)=1,MAX(D$1:D1)+1,"")
    Both formulas require that row 1 be a Header Row, and that the contents of C1 (and D1) be Text, nothing, or a zero. Both formulas are filled to the end of their respective columns.
    Summary by Number contains two formulas.
    A2: =IF((ROW()-1)>MAX(Data :: $C),"",LOOKUP(ROW()-1,Data :: $C,Data :: $A))
    B2: =IF(LEN(A2)>0,COUNTIF(Data :: A,A2),"")
    Both are filled down to the end of their respective columns.
    The first formula checks if its row number minus 1 is greater than the maximum value in the index column. If that is TRUE, there are no more values to look up, and the formula returns an empty string (which appears 'blank'). If it is FALSE, the LOOKUP the value in Data::column A corresponding to the value of ROW()-1 in Data::column C.
    The second formula checks the LENgth of the entry in the column to its left. If the length is greater that 0 characters, there is a countable value in the cell, and the formula passes control to COUNTIF, which counts the number of times that value is found in Data::column A. If the length of the value in the cell to the left is zero, then the cell contains an empty string, and the formula passes control to the part after the last comma, which enters an empty string in the cell containing the formula.
    The formulas in Summary by Name are identical to these except for the (bolded) references. These are incremented to the right; C -> D, and A -> B to match the Data:: columns containing the names and the names index.
    Regards,
    Barry

  • How do I copy the numbers only without the formula.

    May I know how to copy and paste only value of the cell without the formula? ie, something like paste special ... value in Excel?

    Many new users of Numbers miss the Paste Values item because it isn't on the contextual menu; you must find it in the Edit menu. Also, it's not buried within a "Paste Special"-like grouping, but rather standing alone.
    Jerry

  • When I add a row, I lose the formula!

    I made a simple check register spreadsheet a year ago & when I run out of rows I add more rows by dragging the handle in the lower right of the spreadsheet DOWN. I can also click the handle with the number of the row in the lower left to add just one more row. Or I can select the lower right cell (account balance) & hit enter & it created one more row.
    None of these methods preserve my formula! I could swear that dragging the lower right handle in the past has preserved the formula.
    What am I doing wrong?
    Thanks!

    growler62000 wrote:
    =IF(AND(ISBLANK(E2),ISBLANK(F2)),"",Beginning Balance :: B2-E2+F2)
    A = ref #/ck #
    B= Date
    C= Description
    E=Debit
    F= Credit
    G=Balance
    I assume the above formula is in G2. What's the formula in G3?
    If you've created it by filling down, it should be:
    =IF(AND(ISBLANK(E3),ISBLANK(F3)),"",Beginning Balance :: B3-E3+F3)
    But I suspect it's this:
    =IF(AND(ISBLANK(E3),ISBLANK(F3)),"",G2-E3+F3)
    ...and the difference is what's preventing the formula from being automatically filled into new rows.
    My solution DOES work perfectly although I probably explained it poorly.
    Yes it does. Your solution was clearly described, and with one formula in column G that's different from the rest, it's also the most efficient one available.
    BTW, I wish I could force column B to order the entries by date as sometimes I will 1st enter today's date & then next row I enter yesterday’s date, etc
    What messes up sorts is the references to specific cells in the formulas. If you can replace those with references to the appropriate cells wherever the formula actually winds up, the problem is solved.
    Two tools that numbers provides that help with this are
    1. the ability to reference a cell in the same row using only its column reference
    2. the OFFSET function.
    Both are used in the example below. The table on the left is a snapshot after data was entered, and before the table was sorted. The one on the right shows the same table after sorting the selected rows.
    You'll note that I added a second Header row to allow space for the beginning balance to be placed in a header row on this table. That's to make it possible to have the same formula in every non-header row of column G so that the formula will be automatically entered into new rows as they are added.
    Your formula will still work in the first non-header row, should you choose not to make this modification (Just enter the formula below into the row below that and fill down to the bottom row), but I would caution you to not include this first body row in any sort in that case.
    Here's the formula in G3 of the example (and filled down to every row below that):
    =IF(AND(ISBLANK(E),ISBLANK(F)),"",OFFSET($A$1,ROW()-2,6)-OFFSET($A$1,ROW()-1,4)+ OFFSET($A$1,ROW()-1,5))
    Note that the first references to E and F omit the row numbers, and the references to the previous balance, debit and credit cells are through an offset from cell A1.
    You can find out more about OFFSET in the iWork Formulas and Functions User Guide.
    Regards,
    Barry

  • Three Numbers questions:how do you change the auto default background or fill color from white to another color to use in multiple succeeding operations?  what is the formula to express the ratio of two numbers as a percent?

    Numbers questioons:
    -how do I change the automatic default background fill color so it stays a non white color?
    -what is the formula to express the ratio of two numbers as a percentage?
    -how do I create a signal formula to be sue against an entire column of data (for example, if I wanted to multiply the each cell in the column by the number 10)?
    -I have created a spreadsheet in Numbers with header and rows labelled and it contains formulas as well.  I now want to create a new 'blank' of this template with same header and row names and formulas, but without the cell entries from my earlier exerciser so I can use again in the future. How do I do this?

    Hi Matt,
    For short columns, the easiest method is to select the cell containing the formula, then grab the fill handle (small circle at the botom right of the selected cell) and drag down.
    For long columns, use either Jerry's suggestion (copy/paste) or Insert > Fill > Fill Down.
    Copy/Paste:
    Select the cell containing the formula. Copy
    Select from the cell containing teh formula to the end of the column. Paste.
    Fill Down:
    After entering the formula, and pressing enter...
    Click on the column reference tab to select the whole column.
    Command click on each cell above the one containing the formula to remove it from the selection.
    When cell with the formula is the top cell in the selection, go Insert > Fill > Fill Down.
    Pick whichever is easiest.
    Regards,
    Barry

  • Can I create absolute cell values in a formula (rather than dynamic ones)?

    A lot of the time I appreciate the fact that the target cells move when I copy/paste a formula from one spot to another, but there are certain instances when I want the target cell in the formula to be absolute (e.g. G2). Just wondering if there was a way to do this. Thank for any help or guidance you might be able to offer.

    kwalter,
    You may download the Numbers User Guide from a link in the Help menu. On page 126 there's a nice explanation of relative and absolute cell address referencing under the section title: "Distinguishing Absolute and Relative Cell References"
    That's the page number for the English edition. Yours may vary.
    Jerry

  • I need to find how to enter the formula to add rows

    I am updating a spreadsheet that was created in excel and am trying to make the transition to our new mac.  The formula was missing on only a few cell.s  What i want to plug in but can't should look similar to =sum(c12:ad12). to add up the specific cells ina row???
      Any ideas?

    Amy,
    I don't think I'm understanding why you can't edit the few cells where the formula is missing. Is is that you don't know what formula to put there, or how to put it there?
    Jerry

  • How can I paste a part of a sheet from Numbers in Pages as text, without the formulas.The reason I need this (and was used to in Office) so that I have the freedom to delete something in one cell (in pages document) without causing changes.

    How can I paste a part of a sheet that I copied in Numers in a pages document without the formulas, simply as text. Used this a lot in Office. When I make some changes in the pages document. f.i. deleting a cell, I don't want to change other cells. Also when I copy a part of a sheet from Numbers and one of the cells that is part of the formula is not also copied, when I paste in Pages it shows as an error.
    Hope that You can me help with this.

    Leon,
    There are two solutions to the first question, narrowing to one solution when you have a broken link causing an error.
    Here's the "works always" solution.
    Copy (Command-C) the table or range in Numbers
    Click off the table on the blank canvas of the sheet.
    Edit > Paste Values
    Command-C
    Switch to Pages
    Command-V
    Regards,
    Jerry

  • Is it possible to populate cell A with the formula in cell B as opposed to the value of the formula in cell B dynamically?

    Hello,
    I am wondering if the following scenario is possible:
    Cell B contains a formula which refers to a number of other cells.
    Cell A refers to Cell B such that the formula in Cell B is applied in Cell A.
    I am aware that I can copy and paste, but I am wanting to do this dynamically, for the following reason.
    In order to avoid constructing a very complicated formula which involves lots of tricky IF functions, I use a formula with a chain of simpler IF functions, such as follows:
    =IF(A1=1,B1,IF(A1=2,B2,IF(A1=3,B3,IF(A1=4,B4,IF(A1=5,B5,IF(A1=6,B6,IF(A1=7,B7,"" )))))))
    Then in B1-B7 I include the complicated formulas, and depending on which value is actually in cell A1 that particular formula is applied in the cell (i.e the cell is populated with the respective formula).
    Is it possible to use Numbers in this way, or if not, is there another way of achieving my goal (i.e. to avoid having to construct one very long and complicated formula)?
    Thanks,
    Nick.

    It depend of what you want to achieve.
    Here, in standard cells of column B the formula is :
    =IF($A=1,C,IF($A=2,D,IF($A=3,E,IF($A=4,F,IF($A=5,G,"")))))
    Here, in standard cells of column C the formula is :
    =$A*10
    Here, in standard cells of column D the formula is :
    =$A^2
    Here, in standard cells of column E the formula is :
    =$A*12345
    Here, in standard cells of column F the formula is :
    =$A+10000
    Here, in standard cells of column G the formula is :
    =20000-$A
    Here, in standard cells of column H the formula is :
    =OFFSET($A$1,ROW()-1,A+1)
    Here, in standard cells of column I the formula is :
    =CHOOSE($A,C,D,E,F,G)
    Here, in standard cells of column J the formula is :
    =IF($A=1,$A*10,IF($A=2,$A^2,IF($A=3,$A*12345,IF($A=4,$A+10000,IF($A=5,20000-$A," ")))))
    As you see, the formulas used in column B,H, I, require the use of the columns C, D, E, F, G
    The one used in column I doesn't require these columns.
    When a task requires a complex formula, I often used the columna A thru G
    then when I'm sure that the formula in column B return behave exactly what I want, I replace in the formula of column B the references to columns C thru G by the formula embedde in the pointed columns minus the equal symbol.
    It's what I did to build the formula of column J.
    If you build the sample table, you will see that the formula in column I isn't perfect because it return a red triangle when the cell in column A is empty.
    I decided to leave it as is and created an enhanced synthetic formula for column K:
    =IFERROR(CHOOSE(A,$A*10,$A^2,$A*12345,$A+10000,20000-$A),"")
    As you see a single problem may receive different answers.
    Sometimes, one is clearly the best, sometimes it's matter of taste.
    Here my best choice would be the very last one which I added for column K.
    Yvan KOENIG (VALLAURIS, France) mardi 23 août 2011 16:44:11
    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
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • In a purchase order for 3 GR's Quantity does not equal the value

    Hi,
    I have found the difference in one purchase order, there have been 3 GRs where the Qty does not equal the Value.  How has this happened?
    Any guesses why the difference has come.
    Thanks&regards,
    Veena

    Hi Vishal,
    In po history for agt 3 Gr's  Quantity does not equal the values. I hope the difference is Movement types. But exactly where to check this movements i am not getting.
    Can you tell me this which T.code.
    Tx,

  • Is it possible to apply conditional formatting to a cell (or range) based upon a LOOKUP query to cell values in another sheet.? I want to alter the formatting (i.e., text and/or cell background color), but not cell content.

    Is it possible to apply conditional formatting to a cell (or range) based upon a LOOKUP query to cell values in another sheet.?
    I want to alter the formatting (i.e., text and/or cell background color), but not the content, of the target cell(s).

    Hi Tom,
    Your LOOKUP formula will return a value that it finds in the "other" table. That value can be used in conditional highlighting rules. (Numbers 3 calls it conditional highlighting, not conditional formatting. Just to keep us awake, I guess, but it works the same).
    Please explain what you are trying to do.
    Regards,
    Ian.

Maybe you are looking for

  • XML Schemas embedded in Forms TIPS

    I have been having a lot of trouble with embedding an XML Schema into my form to be used with a Workflow. The first problem appears to be that if you create a form and the very "FIRST" dataconnection is not to your schema, the workflow designer will

  • Jspx tag warning, on first element of jspx, on ALL pages of app.!!

    Hello All, I am getting the below posted warning on the FIRST TAG ON JSPX, RIGHT AFTER JSP:ROOT ELEMENT, FOR ALL JSPX PAGES OF THE APPLICATION!!! No grammar available for namespace http://java.sun.com/jsf/core, contents fo element view cannot be vali

  • Early 2009 Mac Pro CPU upgrade

    Hello all I just purchased a 2009 2.66 quad core Mac Pro. I am wondering if the CPU is upgradable. Since the new CPU sits on a slide out tray and shares the same CPU socket as the 8 core CPUs. Can a user upgrade the CPU later? Say if I want to upgrad

  • JDBC calling an Oracle PL/SQL Package?

    Does anyone know how to have JDBC call an Oracle PL/SQL Package? Thanks, Jon

  • Workshop

    Can I pass array as parameter to the Oracle stored procedure from web logic workshop data control?