Numbers overlap columns

When I open a numbers sheet that I have moved from Office Excel years ago and I work on once per year since the system seems to have overlaped columns.  When I expand, for instance, "column A", I find several  columns in one column.  This seems to be a glitch.  I cannot change or erase these columns.  OS Yosemite 10.10.2 IMac 27 inch desktop with Numbers 3.5.2.

Hi kathleen,
A screenshot would be very helpful. You can take one using command-shift-4 and upload it with the camera icon in the reply window. Alos what are you doing when you "expand" the column? I suspect you have 2 tables, one on top ot the other.
quinn

Similar Messages

  • Print Row Numbers and Column Letters

    How do you tell Numbers to print the Row numbers and Column letters? This was very simple in Appleworks (print dialog box had that option). Can't find it in Numbers though.

    Here is a script doing all the job for us.
    Just select one or several cells in a table and run the script.
    It duplicates it, add an header row, an header column, insert the needed labels and fill the other cells with a formula grabbing the contents of the original table.
    --[SCRIPT build a table with headers]
    Enregistrer len tant que Script: build a table with headers.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Selectionner une cellule dans la table à dupliquer
    menu Scripts > Numbers > build a table with headers
    Le script duplique la table et crée des en-têtes de lignes et colonnes.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script as Script: build a table with headers.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select a range of cells in the table to 'duplicate'
    menu Scripts > Numbers > build a table with headers
    The script duplicate the table and inserts columns/rows headers.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2009/09/19
    --=====
    property theApp : "Numbers"
    --=====
    my activateGUIscripting() (* to be sure than GUI scripting will be active *)
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set new_Table to t_Name & "_#"
    my duplicateTable(s_Name, t_Name, new_Table)
    set delim to my getLocalizedDelimiter()
    (* grab localized function names and add an open parenthesis at end *)
    set IF_loc to my getLocalizedFunctionName("Numbers", "IF") & "("
    set CHAR_loc to my getLocalizedFunctionName("Numbers", "CHAR") & "("
    set INT_loc to my getLocalizedFunctionName("Numbers", "INT") & "("
    set MOD_loc to my getLocalizedFunctionName("Numbers", "MOD") & "("
    set INDIRECT_loc to my getLocalizedFunctionName("Numbers", "INDIRECT") & "("
    set ADDRESS_loc to my getLocalizedFunctionName("Numbers", "ADDRESS") & "("
    (* grab localized function names and add a couple of parenthesis at end *)
    set ROW_loc to my getLocalizedFunctionName("Numbers", "ROW") & "()"
    set COLUMN_loc to my getLocalizedFunctionName("Numbers", "COLUMN") & "()"
    tell application "Numbers" to tell document d_Name to tell sheet s_Name to tell table new_Table
    if column count = 256 then
    if my parleAnglais() then
    error "Oops, already 256 columns !"
    else
    error "Désolé, il y a déjà 256 colonnes !"
    end if
    end if
    if row count = 65536 then
    if my parleAnglais() then
    error "Oops, already 65536 rows !"
    else
    error "Désolé, il y a déjà 65536 lignes !"
    end if
    end if
    try
    add row above row 1
    on error
    if my parleAnglais() then
    error "Oops, already five header row !"
    else
    error "Désolé, il y a déjà cinq rangs d’en tête !"
    end if
    end try
    try
    add column before column 1
    on error
    if my parleAnglais() then
    error "Oops, already five header columns !"
    else
    error "Désolé, il y a déjà cinq rangs d’en tête !"
    end if
    end try
    set nbr to row count
    set nbc to column count
    (* =IF(COLUMN()<28,CHAR(COLUMN()63),CHAR(INT((COLUMN()-2)/26)+64)&CHAR(MOD(COLUMN()-2,26)65)) *)
    set theFormula to "=" & IF_loc & COLUMN_loc & "<28" & delim & CHAR_loc & COLUMN_loc & "+63)" & delim & CHAR_loc & INT_loc & "(" & COLUMN_loc & "-2)/26)+64)&" & CHAR_loc & MOD_loc & COLUMN_loc & "-2" & delim & "26)+65))"
    tell row 1
    repeat with c from 2 to nbc
    set value of cell c to theFormula
    end repeat
    end tell -- row 1
    (* =ROW()-1 *)
    set theFormula to "=" & ROW_loc & "-1"
    tell column 1
    repeat with r from 2 to nbr
    set value of cell r to theFormula
    end repeat
    end tell -- column 1
    (* =INDIRECT(ADDRESS(ROW()-1,COLUMN()-1,,,"Tableau 2")) *)
    set theFormula to "=" & INDIRECT_loc & ADDRESS_loc & ROW_loc & "-1" & delim & COLUMN_loc & "-1" & delim & delim & delim & quote & t_Name & quote & "))"
    repeat with r from 2 to nbr
    repeat with c from 2 to nbc
    set value of cell r of column c to theFormula
    end repeat -- with c
    end repeat -- with r
    end tell -- Numbers
    --=====
    Set the parameter delimiter which must be used in Numbers formulas
    on getLocalizedDelimiter()
    if character 2 of (0.5 as text) is "." then
    return ","
    else
    return ";"
    end if
    end getLocalizedDelimiter
    --=====
    on getLocalizedFunctionName(theApp, x)
    local p2bndl
    set p2bndl to (path to application support as text) & "iWork '09:Frameworks:SFTabular.framework:Versions:A:Resources:"
    return my getLocalizedName(theApp, x, p2bndl)
    end getLocalizedFunctionName
    --=====
    on getLocalizedName(a, x, f)
    tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on isItAsheet(s)
    try
    tell application "Numbers" to tell document 1
    count of tables of sheet s (*
    Post an error if s is not a sheet *)
    end tell
    return true
    on error
    return false
    end try
    end isItAsheet
    --=====
    on activateGUIscripting()
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true (* to be sure than GUI scripting will be active *)
    end tell
    end activateGUIscripting
    --=====
    on duplicateTable(sourceSheet, sourceTable, newName)
    local lesFeuilles, lesTables1, found, listOfRows, cor, i, isSourceSheet, nameI, j, lesTables2
    tell application "Numbers"
    activate
    tell document 1
    set lesFeuilles to name of sheets
    if sourceSheet is in lesFeuilles then
    tell sheet sourceSheet to set lesTables1 to name of tables
    if sourceTable is not in lesTables1 then
    if my parleAnglais() then
    error "The sheet “" & sourceTable & "” of sheet “" & sourceSheet & "” is unavailable ! "
    else
    error "La table “" & sourceTable & "” de la feuille “" & sourceSheet & "” n'existe pas ! "
    end if
    end if -- sourceTable is not
    else
    if my parleAnglais() then
    error "The sheet “" & sourceSheet & "” is unavailable ! "
    else
    error "La feuille “" & sourceSheet & "” n'existe pas ! "
    end if
    end if -- sourceSheet is in
    end tell -- document
    end tell -- application
    if newName is not in lesTables1 then (*
    Now, an ugly workaround to duplicate the sheet *)
    set isOS4 to (system attribute "sys2") < 5
    tell application "System Events" to tell application process "Numbers"
    set docWindow to false (* CAUTION, an inspector ("AXFloatingWindow") or a Find/Search ("AXDialog") window may be open *)
    repeat with i from 1 to (count of windows)
    if subrole of window i is "AXStandardWindow" then
    set docWindow to i (* got the document's window *)
    exit repeat
    end if
    end repeat
    if docWindow is not false then
    tell outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of window docWindow
    select row 1
    set value of attribute "AXFocused" to true
    set found to false
    set listOfRows to name of static text of every row
    set cor to count of rows (* equal count of listOfRows *)
    if isOS4 then (*
    for mac Os X 10.4.11
    CAUTION, listOfRows it's a list of lists !
    {{"Feuille 2"}, {"Tableau 1"}, {"theSheet"}, {"Feuille 1"}, {"Tableau 2"}, {"Clément"}, {"Feuille 4"}} *)
    repeat with i from 1 to cor (*
    Scan the thumbnails *)
    set nameI to item 1 of item i of listOfRows
    set isSourceSheet to (sourceSheet = nameI) and my isItAsheet(nameI)
    if isSourceSheet then
    select row i
    if (i < cor) and not my isItAsheet(item 1 of item (i + 1) of listOfRows) then (*
    Here we may scan the thumbnails of tables of sourceSheet *)
    repeat with j from i + 1 to i + (count of lesTables1)
    if sourceTable = item 1 of item j of listOfRows then
    select row j
    set found to true
    exit repeat
    end if -- sourceTable
    end repeat
    else
    if my parleAnglais() then
    error "The sheet “" & sourceTable & "” of sheet “" & sourceSheet & "”" & return & " is not revealed in thumbnails ! "
    else
    error "La table “" & sourceTable & "” de la feuille “" & sourceSheet & "”" & return & " n'est pas affichée dans les vignettes ! "
    end if -- my parleFrancais
    end if -- (i < cor)
    end if -- isSourceSheet
    if found then exit repeat
    end repeat -- i
    else (*
    for mac Os X 10.5.x
    CAUTION, listOfRows is a list of lists !
    {{}, {"Tableau 1"}, {"theSheet"}, {}, {"Tableau 2"}, {"Clément"}, {}}
    With 10.5.x, the names of sheets are empty *)
    repeat with i from 1 to cor
    set isSourceSheet to (class of UI element 1 of row i is group) and (get value of static text 1 of group 1 of row i) is sourceSheet
    if isSourceSheet then (*
    Here we may scan the thumbnails of tables of sourceSheet *)
    if value of UI element 1 of group 1 of row i is 0 then (*
    reveal the tables's thumbnails and adjust the list accordingly *)
    click UI element 1 of group 1 of row i (* click the black triangle to reveal tables *)
    delay 0.1
    set listOfRows to name of static text of every row (* update the list accordingly *)
    end if -- value of UI…
    repeat with j from i + 1 to i + (count of lesTables1)
    if sourceTable = item 1 of item j of listOfRows then
    select row j
    set found to true
    exit repeat
    end if -- sourcetable
    end repeat -- with j
    end if -- isSourceSheet
    if found then exit repeat
    end repeat -- with i
    end if -- check OS
    end tell -- outline …
    keystroke "d" using command down
    end if -- docWindow
    end tell -- System Events…
    if docWindow is not false then (*
    Rename the new table according to the passed name: newTable *)
    tell application "Numbers" to tell document 1 to tell sheet sourceSheet
    set lesTables2 to name of tables
    repeat with i in lesTables2
    if i is not in lesTables1 then (*
    Here i is the name of the newly created table *)
    set name of table i to newName
    exit repeat
    end if
    end repeat
    end tell
    end if -- docWindow
    end if -- newName is not…
    end duplicateTable
    --=====
    on parleAnglais()
    local z
    try
    tell application theApp to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) samedi 19 septembre 2009 17:33:59

  • Format numbers in column chart

    Hi all,
    I want to display formated numbers in tooltip of column chart.
    Instead 60000 display 60,000...
    Is it possible?
    VC7 SP15 Flash runtime.
    Thanks,
    Ola
    Edited by: Ola Agiv on Sep 18, 2008 2:01 PM

    Hi,
    I tried your soln on my System as below.
    1.Input field L1
    2.Expression Field E1 with formula :NSTR(@L1, 'C'),
    3.Exepression Field E2 WIth formula :REPLACE(NSTR(@L1,'C'), '.', ',')
    I Had given Input for L1 as 10000.
    the output of E1,E2 is 10,000  Means output of both formulas returning same output.
    Could you plesae check this once .
    where you testing this
    i am working on SP16.
    Thansk,
    Govindu

  • How can I apply row numbers and column litteral to identify the cells?, How can I apply row numbers and column litteral to identify the cells?

    I news identici row and column in numbers over and left as in Excel. How can I do?

    Hi Roanto,
    Welcome to Apple Support Communities.
    We're all feeling out way around in this newly designed environment, but I think I've discovered that the iWork applications for iPad are still in a community separate from those for the Mac versions of the iWork appplications.
    Seeing as you question is about Numbers for iPad, you might find it better served in the https://discussions.apple.com/community/ipad/iwork_for_ipad>Numbers for iPad Community area. The link will take you to the front page of that community.
    Regards,
    Barry
    PS: You might also consider rewriting your question. I'm having some difficulty deternmining exactly what you want to accomplish.
    B

  • Numbers multiple columns single graph

    HI
    I have to log a single item of data each week for ten years and produce a single line graph spanning the ten years. Simple.
    it is going to get very unwieldy using a single column with over 500 rows.
    is there a way I can enter the data into e.g. 10 columns, one of each year BUT, still produce a single line graph spanning the whole ten years. I do not want a multiple line graph with a libe for each year.
    Many thanks
    Stephen

    Hello
    You might build y-in-single-column table from y-in-multi-column table and create chart using it.
    E.g.,
    Chart_Data (excerpt)
    A1  X
    A2  =ROW()-1
    A3  =ROW()-1
    A4  =ROW()-1
    A5  =ROW()-1
    A6  =ROW()-1
    A7  =ROW()-1
    A8  =ROW()-1
    A9  =ROW()-1
    A10 =ROW()-1
    A11 =ROW()-1
    A12 =ROW()-1
    B1  Y1-3
    B2  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B3  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B4  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B5  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B6  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B7  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B8  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B9  =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B10 =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B11 =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    B12 =OFFSET(Data::$A$1,MOD(ROW()-2,ROWS(Data)-1)+1,QUOTIENT(ROW()-2,ROWS(Data)-1)+1)
    * Tables are built with Numbers v2.
    Regards,
    H

  • Numbers moving column & row headings

    I have a large document which has lots row and column headings (in the grey area) but they keep moving.
    Is there any way I can freeze these so they stay static but the information below moves. ?
    Just starting to use numbers so all your help is absolutely invaluable.

    Loulou,
    The gray area is a header area. Being gray doesn't make it a header area, but header areas are shaded gray by default to differentiate them from the body of the document. There are two elections that you can make regarding the header rows and columns. If you are in Print View, you can choose to have the headers repeat on every page. If you are in Sheet View, you can Freeze Headers. The controls are here, with the table selected:
    Sheet View:
    Print View:
    Regards,
    Jerry

  • Numbers-freezing columns and rows

    Can you freeze columns and rows in numbers although they are not designated as headers?

    FYI   I was looking for information in these old posts on the Freeze function in Numbers.  
    After looking through numerous posts and finally talking with an Apple Tech, we found that the freeze function was not in Number 08, but added in Number 09.   We were both surprised that this basic spreadsheet function was missing from 08
    With this function you can lock/freeze the top row and/or column so as you scroll through the spreadsheet, you can see you first rows or columns while looking at the data in the middle of the  spreadsheet.  
    I am not an Apple representative, but the only way to fix this and other flaws in Number 08 is to upgrade to 09 for $19.99.   Hope this helps.

  • Can not sum when numbers in column prefixed by +

    Am trying to sum a column in an imported spreadsheet. Numbers in the column are prefixed by a + sign. Sum won't work unless I manually remove the + sign. As there are around one hundred lines in this spreadsheet I would prefer not to have to do this. Are there any suggestions as to how I can get the sum formula to work. 

    You could also try selecting the cells you have in the third column and explicitly formatting them as Number.
    SG

  • Numbers - permanent column width

    Hello,
    I installed Numbers on my iPad.
    Then I created a new table but the column width isn't the same. I know how to adjust it but I can't find an option to say "Column 2,3,4 and 5 = 2 cm; Column 1 and 6 = 1 cm".
    Is there something I can type in how wide it should be? Or a permanent-option for selected columns?
    Do you know what I mean?
    Thank you very, very much for your help :)
    Best,
    Daniel

    i dont think thats possible on iOS. What you can do is set a table up, blank. with the column sizes you want. Save that workbook as "Table Template" or some such name. Then whenever you want a new workbook with that table settings, make a duplicate and rename.
    the table itself can be duplicated within the document to make as many exact copies as you want or need.
    Jason

  • First, Last name fields in Numbers -- Three columns on iWeb page

    I'm new to this (both Numbers and iWeb) and I'm trying to help someone with their page (it's for a local candidate).  They have an excel spreadsheet with names and a bunch of other stuff.  they want to put the list of first and last names on their "supporters" webpage, separated by a space, without having to do it manually -- at this point about 900 such names.
    I can get the names out of Excel and into Numbers, obviously.  And I think I know how to get the list into iWeb, if I can generate it (using an iWeb snippet, which I'd also love help with if anyone here knows THAT as well).
    What I can't seem to do is create a list, in three columns, with First name (single space) last name.  Whatever I put in the formula bar seems not to do anything. And I haven't even BEGUN to figure out how to generate the three-column list.
    Any help would be gratefully appreciated.  As dunce-worthy as possible -- believe me, I won't be offended if anyone talks down to me.

    Hi d,
    I think it's the "three column specification that's throwing me. You might need to clarify that.
    The names are currently entered with First names in one column and Last names in the adjacent column. Here's a way to combine the first and last names into a "full name".
    In the "Full" column, the formula is:
    =B&" "&C
    In Last, First, the formula is:
    =C2&", "&B
    To list the names in a three column table in iWeb, you may need to start with a three column table in Numbers. This one pulls the names from column D (Full) of the table above, and distributes them into three columns. The original table has had four names added, and has been sorted.
    Note that the original table has been named "Data".
    The Data table contains the formula(s) shown above.
    The second table, "Aux", calculates the number of cells needed in each of the three columns so that no column is more than one cell longer than the shortest. Doing this calculation in an auxiliary table greatly simplifies the formulas needed in the final table.
    This table contains a single formula, entered in B2, and filled right to D2. Note that A2 is referenced in the formulas in the final table, "3 Columns". A2 may be empty, contain text, or contain the number zero.
    B2 (and fill right): =QUOTIENT(COUNTA(Data :: $C),3)+IF(MOD(COUNTA(Data :: $C),3)>COLUMN()-2,1,0)
    The third table, "3 Columns" displays the names in three columns.
    It contains a single formula, placed in A1 and filled right to column C and down to row 10.
    3 Columns::A1 (and fill right and down): =IF(ROW()<=Aux::B$2,OFFSET(Data :: $A$1,SUM(Aux::$A$2:A$2,ROW()),3),"")
    Descriptions and further examples for the functions used may be found in the iWork Formulas and Functions User Guide. The guide may be downloaded via the Help menu in Numbers.
    Regards,
    Barry

  • Tables with differing numbers of columns in subsequent rows

    I'm trying to create a table that has say 3 columns in row one, 2 columns in row two, 5 columns in row 5. I've done it so far by merging cells and splitting them and then asking it to distribute columns evenly but the columns are not distributed evenly.
    The column width button is greyed out so I can't set the width manually and so my table looks really unprofessional.
    Is there a better way of creating such a table and getting equally distributed columns?
    Many thanks
    sekentious

    an example of merging cells is here
    [http://www.crionics.com/products/opensource/faq/swing_ex/JTableExamples4.html]
    scroll down to 'Multi-Span Cell'
    run the program, highlight some cells, click combine.
    if that's the type of thing you're after, modify your code per what's in 'combine'
    note: the original code (now) produces a stack overflow error (don't know if it's been fixed in the above link),
    but if you get that error, in AttributiveCellTableModel's setDataVector( Vector newData, Vector columnNames )
    change
    setColumnIdentifiers(columnNames);
    to
    columnIdentifiers = columnNames;

  • Numbers 3D Column chart labels

    3D Column chart labels do not work.
    If a label is displayed horizontally, it over-writes the next label and there is no way to turn the label vertically.

    The chart will move allowing you to see the labels.
    There is no way of moving the labels as you can in the 2D chart.
    Best.

  • Detect numbers from columns

    Hi all,
    i would like to ask a question.
    my situation is like this
    i have columns A, B, C and D. And then, my question is how to detect a 5 digit from 4 of A, B, C, D columns.
    example is like this
    insert into XYZ
    (A,B,C,D)
    values
    '4780No 2 SS2/59',
    '33333abc',
    '111111abc',
    'abc'
    below this is a step i detect digits from a column
    select COUNT(*) from XYZ WHERE REGEXP_LIKE (column name, '\d{5}');
    for this example,
    i found out that columns that contain 5 digits and above will return 1 for me.
    '33333abc' = 5digits will return 1 for me.
    and
    '111111abc' = 6digits will return 1 for me.
    i wan exactly 5digits only will return me 1,other is return 0
    can anyone know where i had make a mistake and can make a changes on my logic.
    or
    have other better solution or idea to detect 5 digits from a columns.
    thank you everybody
    thank a lot.

    Now it is working, if any space available in-between ..
    select column_name original_value,
    translate(upper(column_name),'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_?/\,. ','0123456789 ') after_replacing_char_val,
    case
         when length(regexp_substr(trim(translate(upper(column_name),'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_?/\,. ','0123456789 ')), '[^ ]+',1,1))=5 then 1
              when length(regexp_substr(trim(translate(upper(column_name),'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_?/\,. ','0123456789 ')), '[^ ]+',1,2))=5 then 1
              when length(regexp_substr(trim(translate(upper(column_name),'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_?/\,. ','0123456789 ')), '[^ ]+',1,3))=5 then 1
         else 0
         end if_5_digit_number_available
    from XYZ

  • Overlapping of Columns in the Print Preview of ALV Report

    Hi ,
          I have created a ALV report  which has 62 columns, when i see the print preview, the rows overlaps one another. I want a printout where no line items or rows should overlap each other. Never mind if the extra overlapped columns get truncated. Kindly help me to solve this problem.
    Regards,
    shivu

    U need to increase u201Cno. of columns fieldu201D in the Format typesu201D. For details pl. see this link.
    http://www.****************/Tutorials/ALV/Spool/width.htm
    Regards,
    Joy.

  • ROW AND COLUMN WIE IN NUMBERS ON IOS

    I do not find a way or any previous discussion about this.
    Of course I could use the first row and column to give nemes to them but this is not the best solution.
    Any suggerstion ?
    I would like to see the row numbers and column letters and keep them on place while scrolling in numbers and in numbers converted files from Excel.
    Thanks

    I do not find a way or any previous discussion about this.
    Of course I could use the first row and column to give nemes to them but this is not the best solution.
    Any suggerstion ?
    I would like to see the row numbers and column letters and keep them on place while scrolling in numbers and in numbers converted files from Excel.
    Thanks

Maybe you are looking for

  • Where are the Apple guys???? :(

    It seems that there are lot of people out here having essentially the same problem with their ipod mini: - Folder w/ exclamation point or Apple logo flashing - Computer can't detect device (whether through iTunes or MyComputer) - Device no longer cha

  • Where does FlashAccessManage stores it's setup et al.

    Hi, i'm setting Flash Access 2.0 Trial version. Following FAXS_2_0_Quickstart.pdf Everything is fine so far until 5.6 - 5.9. Can start FlashAccessManager, do all the required settings and "save" them. But when i restart FlashAccessManager, those sett

  • Advice reg RFFOUS_C program

    Hi all, we are using RFFOUS_C to print checks.We had a requirement of printing with bottom line software. we have to pass the data from RFFOUS_C to bottom line software. Right now we copied the orginal program and commented all the forms and passed t

  • Problems with the JTabbedPanel

    To the members of the discussion group, I have just downloaded the JDeveloper and am starting to develop an application for a trial, and then bumped into a problem: I've put a JTabbedPanel in a JFrame and the Panels I inserted into it do not alternat

  • Upload troubles with Opera browser and iAS9

    Using the examples in the manual, I have a working plsql upload page. But I've noticed that while IE5 and Mozilla (likely Netscape 6 also) do the 'right' thing with uploading files it seems that if I use Opera 5 it never adds a row to my document tab