Creating a year planner issue

Hey I'm trying to set up a year planner to keep track of lessons ill be teaching. I used the 'Fill Down' fucntion to write all the days in a column going down, but when it comes to doing the same with the date, for some reason now all it does is repeat that first cell....:
Does anyone know why this is happneing? Is there something i might've clicked by mistake?

Kipp,
Use a standard Date format and you will have more success. Enter a date in the DD-Month-YY format and then convert it to your preference in the Cells Inspector.
Jerry

Similar Messages

  • Help with a year planner.

    Hi there,
    I've been trying to create a year planner and been advised to use zellers algorithm to ensure the correct date is placed in each cell of the planner.
    the algorithm given was:
    IF M is january or M is february
    add 12 onto the M
    subtract 1 from the year
    that confused me..could anyone shed some light
    then this
    W=D+int(((M+1)*26)\10+y+Int(Y/4)+Int(C/4)+5*C
    WD=( W MOD 7)
    where:
    D = day
    M = month
    Y = right two digits of the year
    C = left two digits of the year
    WD= week day (the remainder of (the modulus) of W divided by 7
    it should return a value like:
    0 for sat
    1 for sunday
    2 for monday etc
    but what i dont understand is how to use that to create the cells and ensure the correct date is in each. Especially since months are shown at once.
    can anyone shed some light on this?

    I don't know what zellers algorithm is, but this is a display of the full year (with back/forward buttons for other years), if that is what you're after (needs testing).
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Calendar;
    class YearPlanner extends JFrame implements ActionListener
      int year = Calendar.getInstance().get(Calendar.YEAR);
      JLabel days[][] = new JLabel[12][49];
      String weekdays[] = {"S","M","T","W","T","F","S"};
      JButton back = new JButton("<<< Back 1 Year");
      JButton forward = new JButton("Forward 1 Year >>>");
      JLabel lblYear;
      String sMonths[] = {"January","February","March","April","May","June","July",
                          "August","September","October","November","December"};
      public YearPlanner()
        super("Year Planner");
        setSize(900,485);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container frame = getContentPane();
        frame.setLayout(new BorderLayout());
        JPanel monthHolder = new JPanel(new GridLayout(2,6));
        JPanel month[] = new JPanel[12];
        for(int i = 0; i < month.length; i++) month[i] = new JPanel(new BorderLayout());
        JPanel monthName[] = new JPanel[12];
        for(int i = 0; i < monthName.length; i++) monthName[i] = new JPanel(new FlowLayout());
        JPanel monthDays[] = new JPanel[12];
        for(int i = 0; i < monthDays.length; i++) monthDays[i] = new JPanel(new GridLayout(7,7));
        JLabel lblMonths[] = new JLabel[12];
        for(int i = 0; i < days.length; i++)
          for(int ii = 0; ii < days.length; ii++)
    days[i][ii] = new JLabel();
    days[i][ii].setFont(new Font("Ariel",Font.BOLD,10));
    days[i][ii].setPreferredSize(new Dimension(25,25));
    if(ii < 7) days[i][ii].setText(" "+weekdays[ii]);
    monthDays[i].add(days[i][ii]);
    for(int i = 0; i < lblMonths.length; i++)
    lblMonths[i] = new JLabel(sMonths[i]);
    monthName[i].add(lblMonths[i]);
    month[i].add(monthName[i],BorderLayout.NORTH);
    month[i].add(monthDays[i],BorderLayout.SOUTH);
    month[i].setBorder(BorderFactory.createEtchedBorder());
    monthHolder.add(month[i]);
    back.addActionListener(this);
    forward.addActionListener(this);
    JPanel lower = new JPanel();
    lower.add(back);
    lblYear = new JLabel(" Year Planner for "+year+" ");
    lower.add(lblYear);
    lower.add(forward);
    frame.add(monthHolder,BorderLayout.NORTH);
    frame.add(lower,BorderLayout.SOUTH);
    setDates();
    setLocation(100,100);
    setVisible(true);
    public void setDates()
    Calendar cal = Calendar.getInstance();
    for(int x = 0; x < days.length; x++)
    for(int i = 7; i < days[x].length; i++)
    days[x][i].setText("");
    cal.set(year,x,1);
    int firstDay = cal.get(cal.DAY_OF_WEEK)-1+7;
    int ii = 1;
    for(int i = firstDay; i<firstDay+31; i++)
    if(ii < 10) days[x][i].setText(" "+ii);
    else days[x][i].setText(""+ii);
    ii++;
    cal.add(cal.DATE,1);
    if(ii > 27 && cal.get(Calendar.MONTH) != x) break;
    lblYear.setText(" Year Planner for "+year+" ");
    public void actionPerformed(ActionEvent ae)
    if(ae.getSource() == back) year--;
    else year++;
    setDates();
    public static void main(String args[]){new YearPlanner();}

  • YEAR PLANNER!

    After months of searching for a simple year planner (The guys in Aberdeen Apple Store wouldn't believe there wasn't such a thing - until they tried to find it!) I've just discovered that iCal in Lion does include a year view.
    So I've just upgraded my Snow Leopard to Lion, only to find that while iCal does now include a 'Year View' - it is not a year planner!
    You cannot select a colour to represent an event - event colours seem to be allocated according to how long they run - so if I'm on a business trip for 2 weeks it will not be the same colour as a repeat trip for 6 weeks! Nor can I view the title of the event without opening it up.
    After repeated searches I have learnt that many others out there have been looking for the same thing for many years - like me too they seem to be prepared to pay for it - OSX not able to run such a thing?!

    Thanks, this looked good on first glance, but it seems to be templates that are created on a computer, printed out and then filled in by hand. I may be wrong but it is not a software based planner that can be printed out as needed with all the info already there.
    Seems I'll have to keep lotus organizer and a spare computer just to do the one job.

  • How can I print a year planner in Maverick Calendar?

    Hi,
    I am looking at switching back to Calendar from BusyCal and would like to be able to print a year planner. Can't see how to do this within Calendar, any ideas?
    Also, has anyone come across any nice add on software to achieve this through integration with calendar,
    Thanks
    Scott

    If you mean you want to change a color of a calendar category or create a new one, you cannot do that, what is pre-loaded is what you get and cannot be edited.

  • Developing a year planner! major problems!

    Hi there,
    I've been trying to develop a year planner and have had a few design issues with it. the year planner should show all the dates, months etc at the same time.Without using the calendar class in the api i can't see a way of doing this. 5 weeks accross the top of the grid
    12 months down the left.
    mon tues wed thurs frid sat sun mon tues wed thur frid...etc
    ive got a zeller algorithm which works out the start day of each month returning values 0 for a sat, 1 for a sunday etc. Somehow, i've been told i should be able to work this in and make the planner accurate..can anyone suggest the best way of just getting everything presentable in the grid..its driving me up the wall..i'm gonna use a jscrollpane..so it can be big..just has to be presentable.
    thanks in advance,
    John

    Hi mate,
    I have a string array containing days of the week and months. The months appear down the left and the days along the top (5 times-to account for leap years and the suchlike. If i'm using a gridlayout for the dates making sure i use up the blank spaces at the beginning and end is proving confusing..the trouble i'm having is placing the labels/buttons on the grid in the organised way they should..
    thanks :o)

  • ICal Year Planner view

    Hello All,
    Is there a way to have one year planner view or 6 month planner view in one page???
    If so, how can i do it?
    Many Thanks!!

    This is an on going issue with iCal and one of main reason I hardly use it. As a teacher I need to be able to see the year view.
    Just buy yourself a cheap project planning tool instead.
    Apple just don't listen; users have been asking for the year view since 2002 and quick as a flash nothing happens, how difficult can it be !

  • I have an iMovie that I created 10 years ago.  I found the disk and imported.  Everything is there except the sound!  I converted in Wondershare to MPV4 but still no sound.  There is an audio clip that was imported from an analog video camera.

    I have an iMovie that I created 10 years ago.  I found the disk and imported.  Everything is there except the sound!  I converted in Wondershare to MPV4 but still no sound.  There is an audio clip that was imported from an analog video camera.  Does anyone know how I can get the audio back?

    Whitelab Records wrote:
    So, 20 views and nobody's anybody the wiser?
    A small update to this issue....
    I have been trawling the forums to find an answer but to no avail...
    And... I've tried exporting and bouncing individual stems and the full session, either by muting all bar the stem or soloing the stem.....and still nothing.
    Same problems.....everything is audible in audition but nothing plays on playback.
    Since the 'prelisten' channel strip is Solo safe this would indicate that you have a track or channel strip soloed somewhere else, out of sight. Are the Mute buttons on your channel strips blinking?
    To view all objects in your mixer, click the button. You may have to scroll sideways to check the whole mixer.

  • Is there a way to create a year at a glance with detail and print?

    Is there a way to create a year at a glance with detail and print?

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin, how can I eliminate this problem without dropping m. firefox?

    A few days ago I tried to e-mail a friend, when I started A box came up and it required me to add a plugin..Java. I contacted my e-mail courier and microsoft, they told me that is was a plugin from Mozilla Firefox. Since then I must go through Java to send or open an e-mail... this is NOT to my satisfaction, it takes too long for all of this to open and if it is not cleared , I am dropping Mozilla and going elsewhere. Why has this occurred? Is this a result of the last update? If so can I delete the last update and continue on the other version?
    == This happened ==
    Every time Firefox opened
    == last week

    Sorry, I have no idea what you mean by '''"The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin,"'''.
    If you think your problem is caused by the Java plugin, you should visit the Java support forum for assistance.
    http://forum.java.sun.com/index.jspa
    If you could explain what you mean by '''"time unfriendly''' issue with my e-mail account", maybe we'll be able to help you solve that issue.
    It might be helpful for us if we knew exactly which web-mail provider you are using. It seems strange to me that viewing or sending web-mail would actually "need" Java for operation, its more likely that some other item on the web page needs Java to run some advertising or other garbage that isn't a necessary part of the web-mail functionality you want to use.

  • I entered new fields in a form that was created last year to update it.  However, now when I view the responses, they are listed as Column 1, Column 5, etc.  It doesn't show a label for the actual field when I view the responses.  Can you please help?

    I entered new fields in a form that was created last year to update it.  However, now when I view the responses, the headings are listed as Column 1, Column 5, etc. rather than the name of the heading.  Can you please help?

    Hi Mike,
    CRSE is an OEM Product and for use with a custom application they have written. Unfortunately we don't their reports or how they are connecting, it would appear they were originally built off a SQL and then set to a Dataset in the app or they could be adding the data source at runtime. Lots of variations and without access to the source code to see what they are doing not much we can help you with.
    You need to contact the OEM Partner for help in resolving this and find out what you can and need to do to update your SP and work with their canned reports,
    Thank you
    Don

  • Printing a year planner from ical

    is it possable to print a sasco style calander from ical within lion .it apears to be able to print a silly colourd yellow to red chart showing how many events on a day but no descriptions i would love it to print it out in a month by month in a year planner style and send it to my large format printer.can this be done
    thanks

    Hello Karin,
    your second approach is the one I would also choose.
    just make sure to set the control parameters accordingly (i.e. when calling the actual smartform, not when retrieving the name):
    1st smartform: control_parameters-no_open = space
                          control_parameters-no_close = abap_true
    2nd smartform: control_parameters-no_open = abap_true
                           control_parameters-no_close = space.
    This way, both forms will be in one spool request and you will not get the popup for the second one (provided, that's what you want).
    Kind regards
    Matthias

  • Does iCal have an 'annual calendar' feature, i.e. a yearly planner view

    Does iCal have an 'annual calendar' feature, i.e. a yearly planner view?

    Hi Ralph. I was testing one for another user, and while I was at it decided to try to restore poor blue elie's missing tail ... Thanks for the concern. I might change into a frog briefly

  • My mac book air has a virus which is creating a lot of issues...how do i get rid of it? is there a free software to detect it and remove it?

    my mac book air has a virus which is creating a lot of issues...how do i get rid of it? is there a free software to detect it and remove it?

    There is no need to download anything to solve this problem.
    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • I just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password 9which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    i just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password (which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    I assume that you don't have the installation discs, so:
    1. Reboot
    2. Hold command + s key down after you hear the chime.
    3. When you get a text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
    (Type these commands very carefully)
    mount -uw /
    rm /var/db/.AppleSetupDone
    shutdown -h now
    4. You will go through the setup process again, create a new admin account, login to it and then change your existing account password or whatever else you need to do. You can delete the account you made in this process, or not.

  • I am trying to edit a certificate I created last year but I just keep getting a blue bar appear at the top??

    I am trying to edit a certificate I created last year but I just keep getting a blue bar appear at the top??

    Hi Russ,
    Thanks for your response. I am not an experienced user of FC or other video editing software but if its that hit and miss I think I will go to the trouble of finding some better software - I have a busy enough life as is, I don;t want to get into second guessing what a software problem might be!
    I have just successfully exported my video to a master file using one of the Apple codec options so it looks like it could be to do with the H.264 codec.  I am wondering if Apples Compressor software would solve this problem - the only way to try this it to buy it, there is not trial for the compressor app.  Any ideas?
    Thanks
    Gerry

Maybe you are looking for

  • Programmatically adding a Word Document or PDF to a crystal report

    I am using Crystal XI for windows.  I have a VB.Net windows application that I am trying to insert a Word Document and/or PDF into.  I want to programmatically be able to add any file(s) to a crystal report.  Is there any sample code or guidance that

  • HP Scanner No Longer Works with Snow Leopard

    Hi: I just upgraded to Snow Leopard (OS 10.6.1). I have an HP DeskJet F4280 All-In-One. It used to work great under 10.5.x, but now it will print fine but not scan. *If I* launch HP Device Manager, and double-click "Scan Picture", "HP Scan Pro" windo

  • Keywords in Lightroom

    Lightroom 4 appears to have the same problem as the previous version in regards to exporting keywords. I had a support case in Lightroom 3, in regards to the same problem. This was never fixed, as support didn't appear to understand the problem. Assu

  • How can a calendar completely disappear?

    Every few months I have an issue with iCal. One or more of my calendars COMPLETELY disappear. I have an iPhone with a list of calendars on the phone and on iCloud. The iCal application on my laptop only has iCloud. Calendars seem to magically vanish

  • Uninstall Adobe Shockwave Player 11.0

    While upgrading from Windows Vista - Windows 7, I run windows7 upgrade advisor to check the compatibility as suggested by Microsoft. The report shows following issue. Adobe Shockwave Player version 11.0 Adobe Systems, Inc. Update available We don't h