Require a cell to be numeric

Is there any way to require a cell to be a number? I'm having a problem where people write comments in number cells and I want it to error starting next year.

Hi G,
Building on Wayne's approach.
can I check for text input on a bloc of cells? Specifically, D3 through J8, and have the error display in the comment cell?
I am not sure of your aim. Is this to help people [who] write comments in number cells or to help you audit the input? Anyway, here goes.
Method 1.
Another table (duplicate Table 1 then edit to add formulas):
Formula in D3 (then Fill Down and Fill Right to J8
=IF(T(Table 1::D3)="","",Table 1::D3)
That will display true number cells (T function returns "") as "" (Null). Non-number cells (T returns a value that is not Null) will display the "illegal" entry as the text value. If the aim is for you to audit, then the 'Not numbers' table could be hidden on another Sheet.
Method 2.
If all you need to know is how many "illegal" entries have been made,
Formula in D3 (Fill to J8) =IF(T(Table 1::D3)="","",1)
Any true number results in a value of Null, any Non-number results in a value of 1.  Add them up in the Count Table
A2 =SUMIF(Count not numbers::D3:J8, ">0")
Neither of these methods are very helpful to alert your users to a wrong entry. I still think Wayne's and Barry's solutions are better.
Regards,
Ian.
P.S. Ignore the # symbol in J5 of the second screen shot. I was trying something out.

Similar Messages

  • Requirement in Cell Editor

    Hello Guys,
    I am having one requirement in Cell Editor. My report is static report. I mean all the columns and rows already decided. My infoprovider is contain only one characteristics and two key figures.
    My characteristic is Circle and the Key Figures are Minutes of Usage and Revenue. I have to shwo the report like this:
    Circle  | Minutes of Usaage |Revenue|Cost Center|Profit Center
    Tamil Nadu  |    100             |    10000 | 201300A    | 201300       
    Karnataka       |      50            |     5000 | 201001A    | 201001             
    I dont have details of Cost Center and Profit Center. All are hard coded values. No changes on that. So directly we can maintain like this values.
    Remember costcenter and profit center having characters. Otherwise in the cell definition we can create a formula and put this value.
    Any body having idea on this ??????
    If this will not work, i have to go with one more info provider and tranfer all the data with extra columns..... I dont want to do that........
    Regards,
    Vivek V

    Hi Vivek,
    Just a thought:
    Since you want to display Char - KF - Char - I dont know how that would be possible - So Can we use Profit/Cost centre ( they are hard coded already)  as KF..using replacement path/formula variable..so that it is Char - KF - KF...
    And then there should not be possible ??
    Dont knw if i m entirely on wrong path - but you can try - let me knw if it works..
    when you say hard coded - hard coded where?? Can you get value soem where from master data??
    Also Cell Editor makes query performance pathetic
    Hope it helps
    Gaurav
    Message was edited by:
            Gaurav

  • Optics experiment requires to control with a numeric control or string, but source code is having trouble

    Hello,
    I'm working with my professor on an optics experiment and we are trying to control a fast steering mirror with LabVIEW.  We bought the mirror and power supply from piezosystemjena.  They provided a LabVIEW code that works.  
    The problem is that right now, the code can only be controlled manually.  We wish to have LabVIEW control it based on inputs received from other sources.  The LabVIEW code is controlled in either one of two ways.  A knob can be used to change the value of the voltage to move the mirror.  Also, a command can be sent to control the voltage.  In both cases, the "channel" is specified.  In our situation, we have two channels, a X and a Y channel for the axes of the mirror.
     The knob is not convienient for this situation, because we wish to have a numeric control.  When I try and simply "replace" the knob with a numeric control, many things go wrong.  There are other references, property nodes, and sub VI's dependent on that the control is by a knob.
    Is there any way around this and to have it as a numeric control?
    The other way to control the mirror is with the "command."  This simply uses a string to send a command to the mirror and works well.  However, in order to specify the channel and voltage value, the string needs to read as, "set,0,20.5" where 0 is a channel and 20.5 is a voltage (examples). I would like labview to change the string to coincide with different values calculated by other sources and have the mirror move.  However, the code needs the string to be in "control" form.  The only way I can see to have the string function where i can change the inputs, would be to use a concatenated string, however then it becomes an indicator instead of a control.
    Is there any way to get a concatenated string to function as a control, where I wouldn't have to physically type something in, but instead have LabVIEW determine the values?
    I'm attaching the VI's for reference.  The VI from the company is quite complicated, so I'm hoping I won't have to alter it too much.  I'm sure there's a simple answer just using the sub VI.
    Thank you all for your help.
    Message Edited by Support on 11-06-2009 08:28 AM

    Hi R0B0T,
    Here is some example code to get you started. 
    There are two vis: Control.vi and app sim.vi The “control vi” simulates your “trying to control with concatenated string.vi” and the “app sim.vi” simulates your d-drive application. 
    To use these vis, open both front panels. Run the Control vi and change the control values. See how the data is received by the app sim vi.
    Notice in the Control.vi how I generate a value change event for the concatenate function using a value signaling property node. This is required by the receiving app to be able to detect that a change has occurred. 
    Also note that I passed through a stop event to close the app sim vi. The d-drive application does not have an input for this and that is a problem. To cleanly stop the d-drive app you will need to add this functionality (or live with having to stop both vis separately). You will have to read the stop value in two places – in the event structure (lower loop) and also in the while loop (upper loop). I decided at the last moment to include this functionality in the app sim vi so you could see what that might look like.
    Note that in the app sim vi I have a comment about dealing with your knob vs numeric issue. This should give you an idea of what you are up against. It really isn’t too hard if you are able to understand these examples. 
    steve
    Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
    question. Give "Kudos" to replies that help.
    Attachments:
    Control.vi ‏14 KB
    app sim.vi ‏14 KB

  • Requirement for cells in excel

    Hi All,
    I have a requirment, how we can achieve this?
    1. We have to convert pdf file to xml (we have achieved this using Perl script).
    2. Now in the excel sheet we have data from which we have got from PDF..But the data which is available in excel sheet i have to capture few cells..
    For ex: We have columns like this "Name in A column" , "Salary in B column" , "dept in C columns" and so on..
    3. Assume that from the above example we have nearly 100 records and now i want to fetch the particulary cell i.e A10 & B10 & C10..insated o ffecting the entire
    records i want to fecth the particular records..
    Any suggestion or solutions to achiev this..
    Thanks,
    Anoo..

    You can read particular cells from .xls file using COM with PL/SQL.
    SQL and PL/SQL FAQ
    It has some prerequisite and most important is you Database Server's Operating System should be WIN*.

  • How can I remove non-numeric characters from a cell?

    I have a file an rtf file that I can open in Numbers. It puts each line in a separate cell. Each cell contains non-numeric and numeric characters. I'd like to delete the non-numeric characters so that I can add the numbers together. Is there a way to do this easily in Numbers that doesn't require doing it manually?
    Thanks,
    David

    Ok, David,
    This solution will work for vlaues up to 99,000 and if there is a space in front of your amount. There are two parts for clarity but you could wrap them up into one formula if you wanted to.
    B2 =FIND(" ",A2,LEN(A2)−9)
    C2 =MID(A2,B2,10)
    If there is a return before your amount (certain cells in your screenshot got me wondering) then the formula in column B
    =FIND("
    ",A2,1)
    It looks funny because it is finding the return.
    Let me know if this works for you.
    quinn

  • Colour in numeric array indicator cell according to value

    Is it possible to change the colour of the text in individual cells of a numeric display indicator dependent on the value of the numeric displayed in that cell.
    Solved!
    Go to Solution.

    I am not sure if i understand your question. Do you want to color each DIGIT of a single numeric indicator individually depending on the digits value?
    Or are you talking about different numeric indicators where all digits share the same color for each individual indicator depending on the total value in the individual indicator?
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Is there a recommended limit on the number of custom sections and the cells per table so that there are no performance issues with the UI?

    Is there a recommended limit on the number of custom sections and the cells per table so that there are no performance issues with the UI?

    Thanks Kelly,
    The answers would be the following:
    1200 cells per custom section (NEW COUNT), and up to 30 custom sections per spec.
    Assuming all will be populated, and this would apply to all final material specs in the system which could be ~25% of all material specs.
    The cells will be numeric, free text, drop downs, and some calculated numeric.
    Are we reaching the limits for UI performance?
    Thanks

  • How could I insert just a single cell in a table (not an entire extra row or column)?

    I am having trouble making an easy edit. I need to insert an a 'CELL', but I am only being given the option to insert an entire 'ROW' or 'COLUMN'. I would like to just insert a cell and have the rest of the content below it move accordingly. Please help!

    There's no way to set it so that you're just inserting a cell and everything moves along after that cell?
    Simple answer is "No." Sorry.
    InDesign tables are not good for juggling data. If you have a project that requires single-cell-insertion on a regular basis, I suggest doing your table outside of InDesign in an app with easier table-cell-juggling tools (Excel comes to mind here) and then perfecting you use of table and cell styles so that it's easy to update. It'll always be a hassle of some kind, of course, but the hassle can be minimized.

  • Totalling rows based on cerain input in a cell

    I have a table that you can add or remove rows by clicking a button.  in the row is a drop down box of different departments.  another cell is a numerical field.  I want to have a total box for each department, but am unsure of how to code this.  For example, the first row is department 1 and then 5.00, the second row is department 2 and 10.50, the third row is department 1 and 7.95.  The first row was on the form originally and the second and third rows were added by clicking a button.  How do i come up with a total of 12.95 in a total box for department one and 10.50 in a total box for department two?

    Follow the below steps to share a document..
    1. Go to URL http://Acrobat.com
    2. Create an account if you don't have one.
    3. Then login to the website.
    4. In top left corner you will see a button called Upload.
    5. Click on that brwose through the file you want to upload.
    6. After Uploading, mouse over on the uploaded file. Click the down arrow button and choose Share document.
    7. Then you will be prompted a popup window at the lower left corner. Choose "Publish it" option.
    8. In the next pop up window choose "Copy Link" option.
    9. You can paste the link in the forum thread.
    Thanks
    Srini

  • Iam using a table in numbers to plot daily graph lines. If I fill a cell with a text box  at say zero it plots the graph. I can't actually set the cell value until the actual day but the graph plots it at zero when I don't want it to plot anything. Is tho

    I am using a table in Numbers to plot daily graph lines. Mood swings of how I am on the day, i"m a depressive.
    If I fill a cell with a step box at say zero it plots the graph. I can't actually set the cell value until the actual day but the graph plots it at zero when I don't want it to plot anything. Is there a work around. so thatbgraph only plots on the day?

    The answer is (sort of) in your subject, but edited out of the problem statement in the body of your message.
    When you use a stepper or a slider, the value in the cell is always numeric, and is always placed on the chart if that cell is included in the range graphed by the chart.
    But if you use a pop-up menu cell, you can specify numeric or text values in the list of choices for in the menu. Numeric values will be shown on the chart. Text values will not.
    For the example, the values list for the pop-up menu was:
    5
    3
    1
    Choose
    -1
    -3
    -5
    The first pop-up was set to display Choose, then the cell was filled down the rest of the column. Any text value (including a single space, if you want the cell to appear blank) may be used instead of Choose.
    For charts with negative Y values, the X axis will not automatically appear at Y=0. If your value set will include negative values, I would suggest setting the Y axis maximum and minimum to the maximum and minimum values on your menu list, rather than letting Numbers decide what range to include on the chart. Place a line shape across the chart at the zero level, and choose to NOT show the X axis.
    Regards,
    Barry

  • EBay does not recognize new security feature requiring security number in Firefox but works with IE

    eBay has a new security feature when attempting to e-mail a seller; it requires that you enter a numerical code in a box. When on Firefox eBay does not recognize that I've entered the number and keeps telling me to enter the number but when on IE it recognizes the number. What add-on, etc do I need to make Firefox compatible with eBay? Thanks
    == URL of affected sites ==
    http://ebay.com

    The problem seems to be caused by the Java Console add-ons. Disabling mine (6.0.20 and 6.0.21) fixed the problem.

  • Request For Enhancement: Cell Renderers: Is the Mouse In the Cell?

    I would like to propose an enhancement to Cell Renderers: add some way for Cell Renderers to know if the mouse is currently over the cell being renderered. Currently, Cell Renderers are told only if a cell is SELECTED or has FOCUS, which are not the same thing.
    This would be of great help especially for JTable and JTableHeader, where one could provide visual feedback as the mouse moves across cells, which could be a great help for the visually impaired.

    Hi, Marsian -
    You are absolutely right about adding methods to interfaces. My mistake.
    And you are also correct that what I propose would require that cells be repainted as the mouse enters or exits that cell's bounds. If this were to prove too expensive for some applications, the JComponents that use CellRenderers could have a property to enable or disable the behavior, for example setTrackMouseMovements(boolean). But when compared to what happens when you scroll a JTable, I cannot imagine this would be anywhere nearly as expensive, and the rendering that scrolling requires--all the cells that come into view within the viewport after scrolling--seems to work just fine.
    Heck, even when you select a cell, a whole lot of cells are re-rendered. Also, when a tooltip is currently visible, if you move the mouse, the CellRenderer is consulted for each and every mouse movement, even within the same cell!!!. This seems to work fine too. Would re-rendering a cell as the mouse enters or exits its bounds by anywhere nearly as expensive?
    But you write something that still confuses me. Are you saying that you create a new Component each and every time the getXXXRendererComponent() method of your CellRenderer is called? I don't understand why one would want to do this. Can you please help me out here?
    I would think that only one instance of each Component sub-class that the CellRenderer might return would be more than good enough. And I would think that these instances would be created in the CellRenderer's constructor. Certainly, the default CellRenderer classes do not create a new Component each time a cell needs to be renderered. In fact, most of them actually extend an extension of JComponent themselves, i.e. JLabel, and return "this". No CellRenderer I have ever written has ever created a Component each time a cell is rendered. That would be very expensive.
    But still, your point about altering interfaces is well taken. Too bad.
    There must be some solution to this problem. JTable could provide the cell coordinates of the cell in which the mouse currently resides, for instance, or it could have a method that indicates if the mouse is currently over a cell with given coordinates.
    Thanks,
    ---Mark

  • How do I import non-numeric data into DIAdem?

    I have some non-numeric data in an Excel file which I would like to import into DIAdem. DIAdem recognizes the file and imports some of the data, but it only imports those cells that are purely numeric. Cells containing non-numeric characters are ignored. But I need that non-numeric data! How do I force DIAdem to import everything? (Some controls appear in the import dialog that seem like they might be useful here but they're greyed out.)

    Hi There,
    You can not load text columns from ASCII files into DIAdem 8.1 DATA channels (numbers only). But the ASCII Import Wizard will let you send those text values to either a separate ASCII file, which DIAdem can use to put them on a graph as labels, or to a DIAdem string array, which DIAdem can use to display them at various places in its environment.
    The below attachments demonstrate reading an ASCII text column into a DIAdem string array and displaying the values on a DIAdem table in GRAPH. Note that the index values of the string array are placed in a DIAdem DATA channel.
    Ask if you have further questions,
    Brad Turpin
    NI
    Attachments:
    ASCII_Text_Column.txt ‏1 KB
    ASCII_Text_Column.STP ‏1 KB
    ASCII_Text_Column.LPD ‏3 KB

  • Tree view with editable cells?

    Hi,
    I have written a GTK+-2 based graphical visualizer for the NEC2 antenna simulation and analysis tool http://www.qsl.net/5b4az/pages/nec2.html and I am now considering a companion graphical editor for the NEC2 input file. This file is normally produced with a text editor and specifies antenna geometry and then commands to calculate various data regarding antenna characteristics (gain, input impedance etc).
    Luckily the original NEC2 was written in FORTRAN and the input was punched cards with a fixed format, so the current file format is line-based and with a fixed number of parameters per line: you can get an idea by looking into examples files in http://www.qsl.net/5b4az/pkg/nec2/examples/
    What I need is an idea on how to code a graphical line editor with editable cells for each parameter and the ability to add or delete lines as needed. The data in the cells may be numerical or textual or both and there may be inter-relations between cells, e.g. one cell may have a value that is a fixed proportion of another cell's value etc.
    Tips please? Thanks!

    tranquility wrote:
    Well, just about any language with bindings for gtk will work in a very similar manner. If I understand correctly, you might want to investigate the GTK treeview and GTK CellRenderer classes. Try to check the tutorials too.
    Hope this helps.
    Yes, thanks! Unfortunately though there is no easy way to have a spin button type editable cell, which would have been best for my needs. However, I found an example in a tutorial for the TreeView which could make a basis for a home brew second-best solution! 

  • Why can't I get the newest Firefox if I do not have a cell phone? I choose not to carry one.

    Downloading the newest Firefox requires a cell phone. There are many that choose not to carry them or who can not afford them!

    You can download the complete off-line Firefox desktop installer from here: <br />
    http://www.mozilla.com/en-US/firefox/all.html

Maybe you are looking for

  • Windows 8.1 - Update consideration, resources, and known issues - You lost a customer

    I bought my Ideapad U460s 2 years ago. Lenovo appears to be failing to provide support for Windows 8. Ridiculous. You have lost a customer and I will share this info with friends and family.  There have been no updates to the drivers or other softwar

  • How to use BAPI_GOODSMVT_CREATE against the Production Order

    Hi Friends, I need ur help very urgently, I am using the BAPI_GOODSMVT_CREATE (movement code '03') for goods return against the production order (movement type '262'). everything working fine, ie it gets updated in IM/WM. but when we check in the CO0

  • JAVA API :: Information needed

    Hi. I tought BI Publisher Java API would give me access to the server repository. And then, just execute something like: Report r = Report.newReport("MyReportName"); r.Generate() But as far as I see, It only gives me the possibility yo LOCALLY consum

  • 3.1EA2 index edit display bug

    When editing a table by right-clicking on the table in the Connections window [table->Edit->Indexes], indexes that end in -UK or -FK (because they support unique-key or foreign-key constraints) do not appear in the list of editable indexes. The index

  • Attachment transfer from E Rec to PA

    Hi Experts, While doing data transfer activity we also want to transfer attachments for  a candidate from E Rec to PA. We are using ECC 6, EHP 7 E Recruiting. Currently we are transferring the data part only but now attachment transfer is also a requ