How to create a monthly series in numbers

I'm trying to create a monthly date series in numbers for iphone app. When I try to fill down A1:A2, it is presented as B1:B5. I want the column to show the  first day of each month. I can't find a function that accomplishes this.
Header 1
Header 2
6/1/13
6/1/13
7/1/13
7/1/13
7/31/13
8/30/13
9/29/13

Hi DC,
You've asked in the community discussing Numbers for Mac OS X, so this response may not be applicable to Numbers for iOS. If not, you migth try reposting your question in the iWork for iOS community.
Here are two methods using formulas to ceate the date series you want:
Column B: Seed date is entered in B2.
Formula is entered in B3 and filled down to end of column.
B3: =EOMONTH(B2,0)+1
Column C: Formula entered in C2 and filled down.
C2: =DATE(2013,ROW()-1,1)
Note the warning triangles in the last three rows. These warn that the formula is receiving a number greater than 12 for the month argument to the DATE formula. It is a warning of an unusual situation, but not a red error alert as the formula continues to produce the cirrect result.
Italics formatting was applied manually to draw attention to these three cells. The blue triangle may be dismissed with two clicks, one to show the warning:
the other to tell Numbers to ignore the cause. This must be repeated for each cell showing this error.
Regards,
Barry

Similar Messages

  • A file I created a month ago on numbers won't open - but I have 3.1 installed the app store tells me.  Also, I created a template which seems to have disappeared.  Anyone know what I should do?

    A file I created a month ago on numbers won't so open - message tells me I need a newer version of numbers - but software update says I have the latest version.  And a template I created to use with the file just disappeared.   Anyone know what I should do?

    I found the answer in more like this

  • How to create new SAPBO series

    Dear,
           All,
                I have a problem in creating new document series using "Document Numbering" menu.When,I try to sets own series to Default. During creating Document number ,it gives error like --- Another user Modified table -(NNM1)
                        Please,help me by giving your good suggestion.
    Vivek..(SAPBO Member)

    Hi Pratima,
    Can you please see below link and code snippet for how to
     format date in gridview.
    http://www.aspdotnet-suresh.com/2011/05/how-to-set-date-format-in-gridview.html
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title>Gridvew Date format</title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:GridView runat="server" ID="gvdetails" DataSourceID="dsdetails" AllowPaging="true" AllowSorting="true" AutoGenerateColumns="false">
    <RowStyle BackColor="#EFF3FB" />
    <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
    <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
    <AlternatingRowStyle BackColor="White" />
    <Columns>
    <asp:BoundField DataField="Date1" HeaderText="Date1" HtmlEncode="false" DataFormatString="{0:s}" />
    <asp:BoundField DataField="Date2" HeaderText="Date2" HtmlEncode="false" DataFormatString="{0:D}" />
    <asp:BoundField DataField="Date3" HeaderText="Date3" HtmlEncode="false" DataFormatString="{0:m}" />
    <asp:BoundField DataField="Date4" HeaderText="Date4" HtmlEncode="false" DataFormatString="{0:d}" />
    <asp:BoundField DataField="Total" HeaderText="Total" HtmlEncode="false" DataFormatString="{0:C2}" />
    </Columns>
    </asp:GridView>
    <asp:SqlDataSource ID="dsdetails" runat="server" SelectCommand="select * from DateFormat" ConnectionString="<%$ConnectionStrings:dbconnection %>"></asp:SqlDataSource>
    </div>
    </form>
    </body>
    </html>
    Hope this will help you.
    Regards
    Soni K

  • How to create a pulldown list in numbers

    how to create a pulldown list in numbers

    Here is it:
    Open Applescript editor
    Copy the entire script and paste it into Applescript Editor
    Compile it
    Read the instructions at the top of the script
    Run the script, following the instructions.
    You can save the script and it will be available in the Scripts menu (on the right side of the menu bar where Time Machine , Airport, and all those icons are).
    Copy and paste all of what is below:
    -- Script to populate a Numbers pop-up list.
    -- Instructions:
    --                    GUI scripting must be on in System Preferences
    --                    Create a list of items. Must be a contiguous range of cells in a table.
    --                    Select the range of cells to use as items in the popup.
    --                    Run the script. 
    --                    A dialog box will appear asking you to select which cells you want to turn into pop-ups
    --                    Select the cells then click OK on the dialog box
    set tValues to my doThis(1) -- get values of the selection
    if tValues is not "" then
      activate
              display dialog "Select the cells where you want to create the PopUp." & return & "After that, click on the 'OK' button."
              my doThis(tValues) -- set the cell format of the new selection to "PopUp Menu" and set the values of the each menu item
              tell application "Numbers" to display dialog "Done"
    else
              tell application "Numbers" to display dialog "You must select the cells in a table before running this script."
    end if
    on doThis(n)
              tell application "Numbers"
                        set tTables to (tables of sheets of front document whose its selection range is not missing value)
                        repeat with t in tTables -- t is a list of tables of a sheet
                                  if contents of t is not {} then -- this list is not empty, it's the selected sheet
                                            set activeTable to (get item 1 of t)
                                            if n = 1 then return value of cells of selection range of activeTable -- return values of the selection
                                            set format of (cells of selection range of activeTable) to pop up menu -- set the format to pop up menu
                                            return my setValuePopUp(n) -- set value of each menu item
                                  end if
                        end repeat
              end tell
              return ""
    end doThis
    on setValuePopUp(L)
              tell application "System Events"
                        tell process "Numbers"
                                  set frontmost to true
                                  delay 0.3
                                  set inspectorWindow to missing value
                                  set tWindows to windows whose subrole is "AXFloatingWindow"
                                  repeat with i in tWindows
                                            if exists radio group 1 of i then
                                                      set inspectorWindow to i
                                                      exit repeat
                                            end if
                                  end repeat
                                  if inspectorWindow is missing value then
      keystroke "i" using {option down, command down} -- Show Inspector
                                  else
      perform action "AXRaise" of inspectorWindow -- raise the Inspector window to the front
                                  end if
                                  delay 0.3
                                  tell window 1
      click radio button 4 of radio group 1 -- the "cell format" tab
                                            delay 0.3
                                            tell group 2 of group 1
                                                      set tTable to table 1 of scroll area 1
                                                      set tc to count rows of tTable
                                                      set lenL to (count L)
                                                      if tc < lenL then -- ** add menu items **
                                                                repeat until (count rows of tTable) = lenL
      click button 1 -- button [+]
                                                                end repeat
      keystroke return -- validate the default name of the last menu item
                                                      else if tc > lenL then -- ** remove menu items **
                                                                repeat while exists row (lenL + 1) of tTable
                                                                          select row (lenL + 1) of tTable
      click button 2 --  button [-]
                                                                end repeat
                                                      end if
                                                      tell tTable to repeat with i from 1 to lenL -- ** change value of each menu item **
                                                                set value of text field 1 of row i to item i of L
                                                      end repeat
                                            end tell
                                  end tell
                        end tell
              end tell
    end setValuePopUp

  • How to create new character styles in Numbers 3.0

    In Numbers 3.0, it is possible to update existing characters styles, but I cannot find how to create a new character style, the + sign in the popup is always inactive when I edit text in a cell. The paragraph style popup has an active +, but it doesn't work for character style.
    Is there any way to create a new character style?

    Guillame,
    You're right about not being able to add styles, and I have not figured out how to modify a predefined character style, other than to Rename or Delete a predefined style. I have added this to my list of things lost.
    Jerry

  • How to create place holders for serial numbers in billing document

    Hey Guys,
    I want to create place holders for serial numbers in the billing documents so that the serial number information along with the material number is copied from the delivery document into the billing document. Could you please suggest how to do this.

    Hey friend,
    We have a user exit for that however I don’t remember it. It is known issue as it is essential in India for a telecom industry. They need to declare their invoice no. according to the area. So they are assigning there no ranges with plants. Here plants are nothing but different region.
    So you try to find out that exit as you have the similar requirement. And your problem will be solved. If your ABAPer don’t get the user-exit and it’s really urgent come back I will find it out for you.

  • How to create a monthly newsletter on SharePoint WCMS 2010

    Hi
    We are using SharePoint Web Content Management System 2010 for our public facing website. We want to introduce monthly newsletter to our customers. In each newsletter we will have 6/8 articles, and we want each article will have unique URL. Is there
    any module or 3rd party plugin available for creating monthly newsletter with monthly archive? 
    Thanks in advance for anticipating a solution.
    Tariq

    Hi Tariq,
    For creating a monthly newsletter on SharePoint 2010, you can consider using Timer Job to send e-mails monthly. Here are some tips:
    1.Create a  list "Articles" to store your articles and add a Bool column to verify whether this article has sent to subscribers in newsletter, and add other columns you require for your newsletter (Article URL etc).
    2.Create a list with the fields that you require for people who signed up for the newsletter (Name, E-mail address etc). Let's say we call it "Newsletter subscribers".
    You can have a look at the blogs:
    http://www.codeproject.com/Articles/403323/SharePoint-Create-Custom-Timer-Jobs
    http://blogs.msdn.com/b/guruketepalli/archive/2012/01/23/sharepoint-2010-custom-timer-job-send-an-email.aspx
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/bd604c63-3313-420d-b1cf-be01ce607dee/how-to-create-newsletters-with-sharepoint-2013?forum=sharepointdevelopment
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to create a list/array off numbers with boolean attributes

    Hi,
         Maybe the title doesn't explain this too well but what I'm trying to do I'd imagine should be straight forward, I just don't know how!
    I want an array of numbers to be entered by a user, and for each of these numbers I wish to have a boolean, (it will select later what action is performed on that number)
    The array size can vary
    e.g.
    element       Numeric Value              Boolean
    0                       5                             True
    1                       20                           True
    2                       -5                            False
    3                       10                           True
    n                       100                         False
    I don't see any list with numeric and boolean, maybe I just haven't spotted it or do I have to make it somehow?
    Any suggestions please?
    Thanks!
     p.s. if anyone else is using Opera Browser to post here, hitting enter work properly for ye when entering text? For me it causes the cursor to go up one line instead of down! Drives me nuts! It only happens with this NI forum
    Solved!
    Go to Solution.

    Hi thanks for the reply, 
                              It not really what I'm looking for though. 
    I require is a control that inputs both numeric and boolean,  as in the example I mentioned. I guess I'm looking for a cluster really but I thought there may be something more straight forward.
    From the example I gave  
    Element 0 of this array has been entered as a x, and the boolean True was entered (so I perform a "test" A on value x)
    Element 1 of this array has been entered as a y, and the boolean True was entered (so I perform a "test" A on value y)
    Element 2 of this array has been entered as a z, and the boolean False was entered (so I perform a "test" B on value z)
    I could also use a 2d array were I enter another numeric value (0/1 for False/True) but I'm not sure I can limit this column only to accept 0 or zero and the first row any number.
    I was hoping there would be some easier way to do this

  • How to create HU and input serial numbers in inbound delivery order?

    User want a good way to create HU and input serial numbers in inbound delivery order, because they need input lots of serial numbers everyday, VL32N is difficult to use for them.
    So I need create a program to finish it, I want to know is there any BAPI function can be use for this propose?

    I used BDC to finish this task.

  • How to create a column with increasing numbers in h:dataTable?

    I need to make a table that would have a column with order numbers, starting from 1 and increasing by 1 for every row. I tried using JSTL for this but it seems it is being ignored (as it probably should). My code is below. I know I am supposed to use getRowIndex() with bound tables, by my table isn't bound to anything...
    I could hold the number in the backing bean but that seems like a total overkill.
    Is there a proper way to this in JSF? Could I maybe somehow reference this (meaning tha table itself) within the EL expression?
    <c:set var="month" value="0" />
    <h:dataTable value="#{loansManager.rates}" var="rate">
                <c:set var="month" value="${month+1}" />
         <h:column>
              <f:facet name="header">
                   <h:outputText value="Month" />
              </f:facet>
              <c:out value="${month}" />
         </h:column>
         <h:column>
              <f:facet name="header">
                   <h:outputText value="Rate" />
              </f:facet>
              <h:outputText value="#{rate}" />
         </h:column>
    </h:dataTable>

    Bind the datatable to the backing bean and use HtmlDataTable#getRowIndex().
    You can find here an example: [http://balusc.blogspot.com/2006/06/using-datatables.html#AddRowNumbers].

  • How to create a TextField that only numbers can be input?

    Hi,
    I just want to create such TextField that you can just input numbers (0-9) in it. Is there any advice about that?
    I will appreciate any help.

    Look at the IntField in this sample: https://gist.github.com/1962045
    I think you will find some other solutions by searching the forum.

  • How to create an Array which holds numbers ?!?!

    I must be going mad...
    I just write:
    var directio:Number=1 //or any other number
    var someArray:Array=new Array( 1, 0, -1, 0);
    var deltaX:Number = anyNumber*someArray[directio];
    trace (deltaX);
    and this returns NaN !!
    I tried even creating a numeric variables and then put them
    in the array: the same result
    What am I doing wrong?

    Never mind. It turned out to be a typing mistake

  • How to create 14 payment in a year

    Hi
    How  to create 14 payment ina Year instead of 12 Payment Date ( Salary ) For eg ; We have 12 month salary - how to create 14 month salary

    Dear Ashok,
    As per your requirement i understood, you are going to pay 12 months + 1 Additional month salary.
    Can you please tell me in Basic pay for Annual salary field, does it need to show 12months salary (ANSAL) or 13 months salary?.
    and one more....
    in which month you are going to pay that one month extra salary (in which period), i hope it is like bonus payment.
    if it is so we can process it thru 0015 & 2010 with help of PCR.
    thank u

  • How to create appointment occurs last day of each month

    Hi Preston,
    I am trying to create a monthly recurring appointment occurs on last day of every month in .Net. E.g. start at May 31, 2010 end at May 31 2011 every month.
    I specified the frequency as monthly, byMonthDay[0] = (sbyte)31. But this only generates the instances on those months contain the 31th day. My question is how to also create instances on 30th day for those months don't contain the 31th day.
    Thanks,
    John

    The recurrence rule logic is patterned after the recurrence
    logic in iCalendar (http://www.ietf.org/rfc/rfc2445.txt)
    If you have questions, first look there. Then look at the
    schema itself.
    In the schema the definition of DayOfMonth will handle
    negative numbers:
    <xs:simpleType name="DayOfMonth">
    <xs:restriction base="xs:byte">
    <xs:minInclusive value="-31"/>
    <xs:maxInclusive value="31"/>
    </xs:restriction>
    </xs:simpleType>
    <xs:complexType name="DayOfMonthList">
    <xs:sequence>
    <xs:element name="day" type="tns:DayOfMonth" minOccurs="0"
    maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    So, the last day of the month would be -1. The second
    to last day would be -2 and so on.
    >>> On Wednesday, May 26, 2010 at 11:56 AM, Johnny
    77<[email protected]> wrote:
    > Hi Preston,
    >
    > I am trying to create a monthly recurring appointment occurs on last
    > day of every month in .Net. E.g. start at May 31, 2010 end at May 31
    > 2011 every month.
    >
    > I specified the frequency as monthly, byMonthDay[0] = (sbyte)31. But
    > this only generates the instances on those months contain the 31th day.
    > My question is how to also create instances on 30th day for those months
    > don't contain the 31th day.
    >
    > Thanks,
    > John

  • How to create monthly table creation?

    Hi Mates,
    Unable to create table by month in analytic database but load the data to the previous table continuous as attached screenshot, Schema user has the creation privilege. We are using Webcenter interaction 10gR4.
    How to create monthly table creation please?
    Thanks,
    Katherine

    Hi Trevor,
    Thanks for your help.  We were able to create table and load data till Apr as attached.
    However the analytic user privilege has been modified on Apr due to server operation.
    Since then, there was a message saying there is no permission to create tables in the analytic log,
    analytic user privilege has been granted after checked this message, As I suspected, the issue occurred after modifying analytic user privilege.
    Currently, analytic users are granted with all privilege.
    Any idea please?
    Thanks,
    Kathy

Maybe you are looking for