How to fill a date series but skip cells

How do you fill a date series, but skip cells.

Wayne Contello wrote:
A1 is the starting date
A3=A$1+(ROW()-1)/2
copy cell A3 and paste in A5, 7, 9, etc
Alternatively,
A3 = A1+1
Leave A2 blank
Select cells A2 and A3 then grab the "fill" handle (the little yellow circle) and drag down to fill in the rest of the column with the pattern of alternating date/blank cells

Similar Messages

  • How to fill the data in  extraction queue (LBWQ)?

    Hi,
    I modified the structure of datasource 2LIS_02_SCL (change an append structure), since an error occurs when I check the datasource, I deleted the the deltaqueue in RSA7, before that, I also checked the extractorqueue, it was empty.
    But when I excute OLI3BW to fill the extractor queue, it happens nothing.
    How can I fill the data in extractor queue so that I can extract data from R3 to BW?
    Thanks .
    Regards

    Whta u have done is Filling setup tables not the extractor queu......
    Could you please tell whether ur load is delta load or Full load?
    Khaja

  • How to fill LRAW data type from an internal table?

    Hi experts,
    I have a data type LRAW.
    ZCLUSTR type INT2.
    ZLOG type LRAW.
    It is said that: LRAW: Uninterpreted byte string of any length, but has to be declared with a minimum length of 256. Fields of this type must be located at the end of transparent tables (in each table there can be only one such field) and must be preceded by a length field of type INT2. If there is an INSERT or UPDATE in ABAP programs, this length field must be filled with the length actually required. If the length field is not filled correctly, this may lead to a data loss in the LRAW field! A fields of this type cannot be used in the WHERE condition of a SELECT statement.
    So my question is how can I store data in ZLOG? I want to store the content of an internal table into ZLOG, but I don't know how to use INSERT statement correctly. What should I do with ZCLUSTR?

    Hi Chaitanya,
    Refer IMPORT EXPORT statement with addition TO DATABASE in abap help.
    Refer below link from SAP help where it is described in detail.
    http://help.sap.com/saphelp_nw04/helpdata/EN/fc/eb3bf8358411d1829f0000e829fbfe/content.htm
    Regards,
    Vishal

  • A plus sign shows automatically after filling the date in my table cell.Why?How to delete it?

    Hi y'all..I'm using Numbers as my record for my expenses,income,etc.
    I have a "date" coloumn eg "13 September 2011" and after I fill the date and move on to the next table, a "+" sign appear on my date table automatically, what's that?How do i delete that?

    That means your column is not wide enough to display all of the content. Widen the column & the + will go away.

  • How to insert a date in a numbers cell from applescript?

    Hey guys,
    I was just wondering, I got this list of dates that i want to change with this handler that i call datachanger, i use it to seperate dates like these 1994-11-07 and reassemble them. Now what i would like to do is to reassemble them in such a way that i can insert every item in datalist in numbers cells. Now it gives me a weird error. How do i have to change the things between bas3 and bas2 to get it to fit in a numbers cell without an error? or do i have to use the quoted form of it before i can insert it?
    SCRIpt
    on datumchanger(datumlist)
        set a to 1
        set datalist to {}
        repeat with bas in datumlist
            set AppleScript's text item delimiters to "-"
            set bas1 to text item 1 of bas
            set bas2 to text item 2 of bas
            set bas3 to text item 3 of bas
            set datumitem1 to bas3 & "," & bas2 & "," & bas1
            set the end of datalist to datumitem1
        end repeat
        return datalist
    end datumchanger
    SCRIPT
    Help is so much appreciated:)
    Thank you so much in advance:)

    As I carefully wrote in several scripts posted here, when we want to insert a date in a Numbers cell,
    we must coerce it to a string.
    --{code}
    set date1 to "" & 1 & "-" & 1 & "-" & 2012 -- it's a string
    set date2 to "" & 1 & "/" & 1 & "/" & 2012 -- it's a string
    set date3 to current date -- it's a date
    set date4 to "1994-11-07"
    Here is the safe way to build a date which will behave well on every localized version.
    I use the short date string to set the time component to 00:00:00 *)
    set date5 to date (short date string of (current date))
    set year of date5 to 1943
    set month of date5 to 12
    set day of date5 to 31
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
              set value of cell "B2" to date1
              set value of cell "C2" to date2
              set value of cell "D2" to date3 as text
              set value of cell "E2" to date4
              set value of cell "F2" to date5 as text
    end tell
    --{code}
    On my machine the format yyyy-mm-dd is accepted but I don't remember if it's the standard behavior or if I added this format in the dedicated resource file.
    Yvan KOENIG (VALLAURIS, France) lundi 30 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

  • How to fill the data in JTable at runtime

    Hi all,
    I am having a JButton and also a JTable.
    Now my problem is that intitially am setting the value of each column in the table to zero.
    But when I click the JButton i have to fill the JTable with all the new values.
    Please hepl me out solving this problem.
    I am really struck.
    Regards
    RAKESH SAGAR

    If other suggested links give you nothing - take a look at:
    http://forum.java.sun.com/thread.jspa?threadID=699117
    It seems Tjirpovf have code somewhat similar what you are asking for ("reply 5" - fill table with data from GUI). And you might even find my answer to his question useful ("reply 7" - fill table with data from file and save table data to file).

  • Showing a date listing from recordset, how to fill in dates not listed?

    I have been several different directions on this, but this may work.
    I am trying to list a date range like Nov 1 through Nov 8, ie Nov1, Nov2, Nov3, etc and under each date show a recordset COUNT for that date and if there is no record matching that date, show 0 .
    I have this sql
    mysql_select_db($database_connbubba, $connbubba);
    $query_rs_count = "SELECT yard_sales.yardsale_date,DATE_FORMAT(yard_sales.yardsale_date, '%b %d') AS theDate,COUNT(*) FROM yard_sales WHERE yard_sales.yardsale_date>=CURDATE() GROUP BY yard_sales.yardsale_date";
    $query_limit_rs_count = sprintf("%s LIMIT %d, %d", $query_rs_count, $startRow_rs_count, $maxRows_rs_count);
    $rs_count = mysql_query($query_limit_rs_count, $connbubba) or die(mysql_error());
    $row_rs_count = mysql_fetch_assoc($rs_count);
    user posts their yard sale information into the db and column yardsale_date is date YYYY-MM-DD
    so with this setup, i have a table with 2 rows (rs_count.theDate and rs_count.COUNT) and the table repeats horizontally.
    so the result is
         Nov2                  Nov6                   Nov8
    1 Yard Sale          2 Yard Sale         1 Yard Sale
    How can i get
         Nov2                 Nov3                   Nov4                 Nov5                   Nov6                      Nov7                  Nov8
    1 Yard Sale         0 Yard Sale         0 Yard Sale       0 Yard Sale         2 Yard Sale          0 Yard Sale        1 Yard Sale
    thanks for your help,
    jim balthrop

    You can't show data that does not exist, so you first need to create another calendar table that includes all possible dates. You can then outer join that table to your main table. Pull the dates from the calendar table and count the number of sales in your main table. Group by calendar table dates.

  • How to Fill Sorted Data with model Driven Development

    Hello
    I am using model driven development. I am using getAll in the Fill method. But the results are not returned sorted by some field that I am interested in. How do I tell the Fill to sort it by some field. Is there some annotation that I can provided in the model...
    thanks
    RK

    You should be able to achieve what you want with an explicit criteria filter on your entity.
    In the Modeler Design view, select your entity and add a filter. You'll see that there is a an "Order By" field in the Properties view.
    Enter the value you want there and then save and redeploy your model. When you don't enter anything in the "Criteria" field, you create a getAll fill.
    Here's an example of an entity created with this type of filter; it is sorted by price in ascending order:
    <entity name="Product" persistent="true">
      <annotation name="ServerProperties" ServerType="LCDS"/>
      <annotation name="DMS" Table="PRODUCT"/>
      <annotation name="RDS" introspectedColumns="PRODUCTID,DESCRIPTION,PRICE,PRODUCTNAME"/>
      <annotation name="VisualModeler" width="115" height="110" x="364" y="203"/>
      <id name="productid" type="integer">
      <annotation name="DMS" ColumnName="PRODUCTID"/>
      </id>
      <property name="description" type="string" length="255">
      <annotation name="DMS" ColumnName="DESCRIPTION"/>
      </property>
      <property name="price" type="float">
      <annotation name="DMS" ColumnName="PRICE"/>
      </property>
      <property name="productname" type="string" length="255">
      <annotation name="DMS" ColumnName="PRODUCTNAME"/>
      </property>
      <filter name="MyFill" order="price ASC"/>
      </entity>

  • How to fill the data of two different tables into one?

    Hi Experts,
    I have two tables named CDHDR and CDSHW(structure). I have extracted the  data from these two tables through two function modules named CHANGEDDOCUMENT_HEADER and CHANGEDOCUMENT_POSITION. Now I have the data in to different tables.
    These two tables neither has relationship with each other through any field nor have any field which exist in both. Can anyone tell me in this case what should be the process to take the data of both the tables into one table. How can I match the record of one table to another?
    thanks a ton in advance.
    Edited by: Moni Bindal on Apr 28, 2008 4:16 PM
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:42 PM

    Hye Bindal,
      without a relation, it is not possible to club the data of 2 internal tables. More over it depends on the requirement as to y u should club to non related quantities in an internal table.
    if you wish to do so, one thing is it has internal table which includes the strucute of the 2.
    data: begin of ty_out,
              first type first_structure,
              second type second_structure,
             end of ty_out.
    data: itab type standard table of ty_out.
    data: wa type ty_out.
    loop into it1 into wa1.
    move corresponding wa to wa1.
    append wa to itab.
    endloop.
    loop into it2 into wa2.
    move corresponding wa to wa2.
    append wa to itab.
    endloop.
    now the internal table itab will have all the contents of it1 and it2.
    <REMOVED BY MODERATOR>
    Thanks,
    Imran.
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:43 PM

  • How to Print List to spool but skip the print parameter window?

    Dear all,
      I am coding a program for print list into  spool.
    But every times I run the program there must pop up a print parameter window, after I click the 'Continue' button,then the list print to spool.
      Is there some way that I can just run the program and print to spool directly?
                               Thank you for your kindness help~~~
    Message was edited by: jin yan

    Hi,
    If it is a report program then, use this code.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LP01'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT rep... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = 'X'
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Hope This Info Helps YOU.
    <i>Reward Points If It Helps YOU.</i>
    Regards,
    Raghav

  • How to get the data from a table cell

    Could somebody suggest me how I can get the data value from a table cell if I set that cell a Double object previously.
    Thanks very much

    Thanks for camickr's information.
    And thanks uhrand,
    I haven't got it sloved. I am sick on this problem.
    I have the methods to let the table editable. My tableModel code is from Sun Tutorial.
    It has the code like this:
    public int getColumnCount() {
                return columnNames.length;
             public int getRowCount() {
                return data.length;
              public String getColumnName(int col) {
                return columnNames[col];
             public Object getValueAt(int row, int col) {
                return data[row][col];
             * JTable uses this method to determine the default renderer/
             * editor for each cell.  If we didn't implement this method,
             * then the last column would contain text ("true"/"false"),
             * rather than a check box.
            public Class getColumnClass(int c) {
                return getValueAt(0, c).getClass();
             * Don't need to implement this method unless your table's
             * editable.
            public boolean isCellEditable(int row, int col) {
                //Note that the data/cell address is constant,
                //no matter where the cell appears onscreen.
                if (col < 1) {
                    return false;
                } else {
                    return true;
             * Don't need to implement this method unless your table's
             * data can change.
            public void setValueAt(Object value, int row, int col) {
                if (DEBUG) {
                    System.out.println("Setting value at " + row + "," + col
                                       + " to " + value
                                       + " (an instance of "
                                       + value.getClass() + ")");
                data[row][col] = value;
                fireTableCellUpdated(row, col);
                if (DEBUG) {
                    System.out.println("New value of data:");
                    printDebugData();
            public void printDebugData() {
                int numRows = getRowCount();
                int numCols = getColumnCount();
                for (int i=0; i < numRows; i++) {
                    System.out.print("    row " + i + ":");
                    for (int j=0; j < numCols; j++) {
                        System.out.print("  " + data[i][j]);
                    System.out.println();
                System.out.println("--------------------------");
            }

  • How to export table data with coloring of cell according to value.

    Hi all,
    I am using jdeveloper 11.1.1.6
    i want to export table data with lot of formatting. like with coloring of cell according to value and so many.How to do that?

    Hi,
    like with coloring of cell according to value and so many.How to do that?
    Answer is, you can't
    Frank

  • How to create line hart with variable number of data series

    Hello,
    I am student and I am completely new to Flex programming but
    I need to urgently create an app that should have a variable number
    of data series but of ame type of object.
    eg. Profits for X,Y and Z in in run while just corp X in the
    next instance.
    How can I accomodate for this in the app? can someone point
    me in the right direction I would really greatful as this project
    is really crucial for my coursework to get finished in timely
    manner.
    Thank you

    Hey,
    I'm not really sure what you want, but you should check out:
    http://demo.quietlyscheming.com/ChartSampler/app.html
    Which has a list of different types of charts in Flex and
    will hopefully help. Also check out charting from ILOG, which is
    quite good:
    http://www.ilog.com/products/elixir/

  • How to fill field with test data in alv grid display

    hi all,
    i m adding field TEXT to the structure for displaying grid.
    i m modifying program like this
    DATA: ALV_OUTPUT  LIKE HRPDV_EXPIRED_Q OCCURS 0 WITH HEADER LINE.
    TYPES : BEGIN OF FS_OUTPUT .
          TEXT(20) TYPE C.
            INCLUDE STRUCTURE HRPDV_EXPIRED_Q.
    TYPES       TEXT(20) TYPE C.
    TYPES    END OF FS_OUTPUT.
    DATA: fs_output like table of alv_output.
    CLEAR WA_FIELDCAT.
      WA_FIELDCAT-FIELDNAME = 'TEXT'.
      WA_FIELDCAT-seltext_l = 'Abteilungs Struktur'.
      wa_fieldcat-tabname   = 'ALV_OUTPUT'.
      WA_FIELDCAT-COL_POS  = '13'.
      APPEND WA_FIELDCAT TO P_GT_FIELDCAT.
    this is what i have write for diapalying field. but my question is how to fill test data with field TEXT.I m writing like this but not executed in the aboove grid dispaly statement.
    loop at alv_output.
    *alv_output-text(20)  = 'abcdefgh'.
    *modify alv_output.
    *endloop.
    plz tell me how to fill test data

    hI..,
    Your table declaration has to be like this..
    TYPES : BEGIN OF FS_OUTPUT .
    INCLUDE STRUCTURE HRPDV_EXPIRED_Q.
    TYPES TEXT(20) TYPE C.
    TYPES END OF FS_OUTPUT.
    DATA: ALV_OUTPUT LIKE standard table of fs_output initial size 0.
    loop at alv_output <b>into fs_output</b>.
    <b>fs</b>_output-text(20) = 'abcdefgh'.
    <b>modify alv_output index sy-tabix from fs_output transporting text.</b>
    endloop.
    Now give this table alv_output to the GRID_DISPLAY function module..
    you will get the required output !!
    Plz do remember to close the thread when ur problem is solved !!
    reward all helpful answers !!
    regards,
    sai ramesh

  • How Do You Fill in a Series?

    How do you fill in a series? On Excel it's so easy, I've been trying to figure this out all day on iWork 09. I have found all the other fill options but I can't find out how to fill in a series anywhere. I've tried everything and I'm really annoyed at this point, please help =(

    And of course it's well described in the Numbers User Guide available to every users from the Help menu.
    Yvan KOENIG (VALLAURIS, France) vendredi 28 août 2009 10:31:29

Maybe you are looking for

  • Tecra S3 - Wlan does not work after Win XP installation

    Hello everyone, I have recently purchased a Tecra S3 PTS30E-0TL059GH without operating system. I've installed WIndows XP professional. Everything works, except for the wireless lan. I can switch it on, but it doesn't seem to find the right drivers. T

  • Program in which  i am downloading   p0002-pernr ,  pernr-ename ,  p0002-sp

    I have written a program in which  i am downloading   p0002-pernr ,  pernr-ename ,  p0002-sprsl  in to c:\temp  in csv format ,  i am able to download the file but the program continue running its not stoping   its  acting like an infinite loop   pro

  • Error when using setInterval

    Hi, I am getting the following error on air client when using setInterval or setTimeout. var t =setInterval("myfuction( )",2000); Error: Adobe AIR runtime security violation for JavaScript code in the applicati on security sandbox (window.setInterval

  • E6 - map update problem

    Hi, Today I updated the map software (it was a 16mb file). After the update, map is not working as expected. Now when I press map icon, it opens the map of the locality (with 'searching for position' on top). It is not giving the options to choose dr

  • How to recreate output in MR90

    We ran MRRL and produced lots of Invoices but initially we didn't create the NACE condition records so the Invoices in SAP don't contain any output. Now we have created NACE and trying to generate the output with retrospective effect for Invoices alr