I want to create an event on my calendar by creating a spreadsheet.

I'm currently using an iphone 6 plus. I get my shifts in work printed on a spreadsheet. I was hoping there could be a way to create my own spreadsheet and then export them into a calendar event? I just want to create events so I can easily look at my phone to see when I'm working then rather looking at a photo on my phone which I would take to view. I've only got access to my phone so can't use a computer. I've also got numbers on my phone.
Many thanks!

Making Apps is not simple. It is a lot of work. Especially if you are doing it as an individual, like myself.
The iOS Developer Program is $99/yr. Same, separate price for the Mac Developer Program. The Safari Developer Program is free, however, but the only "apps" that can make you are webapps. (From the days of iPhone OS 1, before the App Store!)
You can hire a Developer with a Paid Account, but I suggest using iWeb and making a website. You could even use an online website editor to make a mobile version that can be added to the home screen and looks like an app. Or get fancy and use Adobe Dreamweaver.

Similar Messages

  • I am wanting to add an event to my calendar but the red " " is not red. What should I do?

    I am wanting to add an event to my calendar but the red "+" is not red. What should I do?

    Go to Settings>iCloud>Calendar>On. Then go to the calendar app and see if then+ sign appears.

  • How can I automatically notify the invitees by email about an event on the calendar on a certain date ?

    Hello,
    I want to start an event in the calendar, on this very day, for after 2 weeks (just giving an example).
    Also I want to add an notification, that is going to notify me and all the invitees, for example 10 before the very event.
    How can I do that?
    I tried to do it, but it only reminds me, not the invitees.
    Thanks in advance!
    Have a wonderful day!

    I don't enter it , it gets it from my card and i have written 2 there and its allowing me to choose between those two.
    Maybe we are talking about different things if you can just let me know the procedure of doing it from the beginning, I will be very grateful, if not thanks!

  • Is there a way to flag events on the Calendar differently?  I want to put bills in my Calendar on the days they are usually due (repeating monthly).  I want to flag them somehow when they have been paid.

    Is there a way to flag events on the Calendar.  I want to put bills to be paid (and have them repeat monthly) on my Calendar.  I would like to be able to flag them after they are paid.  I tried to put them in using the "Home calendar" blue, and them change them to purple (Work Calendar) after I had paid them.  The problem is that once I changed a bill from blue to purple it changed all upcoming bills for future months to purple also.

    You might want to try Reminders.
    Creat a Bill Pay list, add all your bills set a reminder to repeat every month and when you pay one just check them off as complete

  • How to get updated and recently created events from google calendar in pl/s

    Hello
    I am able to get Google calendar events using pl/sql..I am receiving huge xml code(if there are more events),want only update and recently created events instead of getting repeated events.please help me in this regard.
    Thanks

    From the Google Calendar API online documentation:
    "Retrieving an event again
    If you want to retrieve an event that you've retrieved before, you can improve efficiency by telling Calendar to send the event only if it has changed since the last time you retrieved it."
    http://code.google.com/apis/calendar/data/2.0/developers_guide_protocol.html#RetrievingCached

  • Can't create "new event" in icloud calendar

    When I want to create a "new event" this is waht happens. It says "couldn't create an event" because of server error. When I click report this window opens.
    It is happening to 4 other people that I know. What is going on with icloud???

    I have a client that is getting the same error message when trying to add a new calendar entry at icloud.com.

  • I want to create an array that goes into a case structure where each element in the array is an individual case and gets done in order

    I want to create an array that goes into a case structure where each element in the array is an individual case and gets done in order. Any ideas, I've been playing with the idea but have had no luck, is this even possible?

    Hi,
    Please check it out the attached Vi.. Is this you need?
    Sasi.
    Certified LabVIEW Associate Developer
    If you can DREAM it, You can DO it - Walt Disney
    Attachments:
    Event.vi ‏11 KB

  • I want to create a border...

    but it is not working!!!!!!! I want to create a border around a box. What I have done is create 2 separate transform groups one with the filled boxes and another with lines. The border works fine if it is just around one box in any position but when it is placed around a group of boxes it doesn't work! Consider the board a boardgame board... there have to be borders around the boxes so that the users can know where a square ends and begins spent all day on this today... didn't think that something so simple would be so difficult!! Thank you in advance for helping! Below is the code
    //This is the code for creating the squares
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Square
         public static final float LENGTH = (float)0.05;
         public static final float DEPTH = (float)0.0125;
         public int column;
         public int row;
         public float x;
         public float y;
         public float z;
         private TransformGroup trans;
         private TransformGroup blackLines;
         private Box square;
         private Box lineSquare;
         private Group subGroup;
         private Group lineGroup;
         public Square(Texture boardpic, int column, int row)
              this.column = column;
              this.row = row;
              subGroup = new BranchGroup();
              lineGroup = new BranchGroup();
              Color3f grey = new Color3f(0.5f,0.5f,0.5f);
              Color3f black = new Color3f(1.0f,1.0f,1.0f);
         Transform3D t = new Transform3D( );
              float distanceToEdge = ( LENGTH * (float)4.0 ) - ( LENGTH / (float)2.0 );
              //System.out.println(distanceToEdge);
              trans= new TransformGroup();
              blackLines = new TransformGroup();
              x = -distanceToEdge + ( column * LENGTH ) ;
         y = distanceToEdge - ( row * LENGTH ) ;
              z = -DEPTH;
    Vector3f v = new Vector3f(x, y, z);
              t.setTranslation(v);
              trans.setTransform(t);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              blackLines.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              blackLines.setTransform(t);
              //sets a black line around a square                    
              Appearance blackLineApp = new Appearance();
              blackLineApp.setColoringAttributes(new ColoringAttributes(black,ColoringAttributes.NICEST));
              PolygonAttributes blPolyAt=new PolygonAttributes(PolygonAttributes.POLYGON_LINE,
                                            PolygonAttributes.CULL_FRONT,0f);
              //blPolyAt.setPolygonOffset(100.0f);
              //blPolyAt.setPolygonOffsetFactor(100.0f);
              blackLineApp.setPolygonAttributes(blPolyAt);
              lineSquare = new Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, blackLineApp);
              subGroup.addChild(lineSquare);
              //Attributes for creating the filled box
              Appearance appearance = new Appearance();
              PolygonAttributes polyAt=new PolygonAttributes(PolygonAttributes.POLYGON_FILL,
                                            PolygonAttributes.CULL_NONE,0f);
              polyAt.setPolygonOffset(0.1f);
              polyAt.setPolygonOffsetFactor(0.1f);
              appearance.setPolygonAttributes(polyAt);
              appearance.setColoringAttributes(new ColoringAttributes(grey,ColoringAttributes.NICEST));
              appearance.setTexture(boardpic);
              TextureAttributes texAttr = new TextureAttributes();
              texAttr.setTextureMode(TextureAttributes.MODULATE);
              appearance.setTextureAttributes(texAttr);     
              Box square = new com.sun.j3d.utils.geometry.Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, appearance);
              trans.addChild(square);
              subGroup.addChild(trans);
              subGroup.addChild(blackLines);
         public Group getGroup()
              return subGroup;
         public Group getLines()
              return lineGroup;
    //this the code for creating the board
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.GraphicsConfiguration;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Board extends JFrame
         public Square[][] fullBoard = new Square[23][23];
         public Board()
              GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
              Canvas3D c = new Canvas3D(config);
              BranchGroup bg = new BranchGroup();
              TextureLoader picload = new TextureLoader("brown001.gif", this);
              Texture texture = picload.getTexture();
              texture.setMagFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              texture.setMinFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              for(int col = 1; col < 23; col++)
                   for (int row = 1; row < 23; row++)
                        fullBoard[col][row]=new Square(texture, (col-11), (row-11));
                        bg.addChild(fullBoard[col][row].getGroup());
                        //bg.addChild(fullBoard[col][row].getLines());
              TransformGroup tg = new TransformGroup();
              tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              Transform3D rotation = new Transform3D();
              rotation.rotX(java.lang.Math.toRadians( -45 ));
              tg.setTransform(rotation);
              tg.addChild(bg);
              BranchGroup scene = new BranchGroup();
              scene.addChild(tg);
              scene.compile();
              SimpleUniverse u = new SimpleUniverse();
              u.getViewingPlatform().setNominalViewingTransform();
              u.addBranchGraph(scene);
              System.out.println("I am here now");
         public static void main (String [] args)
              Board b = new Board();
    Thanks again...
    -JET-

    Sorry the line:
    subGroup.addChild(lineSquare);
    should read:
    blackLines.addChild(lineSquare);

  • Want to create dynamic link with ActionEvent

    Hi all,
    I am developing an application in JSF. I want to create links dynamically with their action event. I can create links dynamically, but I don't know how to provide actionEvent OR actionListener to those links.
    Any help will be appreciated. ( If possible, give me an example / sample code. )
    Thanks in advance,
    JSF GEEKS
    Edited by: jsfgeeks on Nov 24, 2009 10:15 AM

    commandLink?
    What do you mean when you say: "I want to create links dynamically with their action event."
    Do you need parameters? Or different action events?

  • Want to create a knowledge module urgently

    Hi all,
    I am very new in ODI, i want to create an IKM for loading data into a target table. The logic i want to implement is that.
    I have a target table say Event, it has three columns
    Create table Event
    Event_ID Number(10,0)
    ,Event_Num Varchar(255)
    ,Source Varchar(255)
    Now i have a source table say Sales
    Create table event
    Sales_ID Varchar(255)
    ,Flag byteint
    I want to load target table Event in a way that
    Event
    Event_ID is a Surrogate_Key preferably a sequence in the interface named say Seq_Event that is unique for every event_num
    ,Event_Num is Sales_id from source table say Event
    ,Source hard coded value say 'Hello'
    The only complexity is that event_id should b generated once for each sales_id i.e it should be a one to one mapping.
    My source and target technology is teradata, if u ppl r not familiar with teradata then u can help me in making a IKM for oracle i will convert it into teradata.
    Your urgent help will be higly appreciated.
    Thanks in advance

    Here is the simple way to solve it.
    Step 1. Create a variable EVENT_ID_SEQ and write syntax like this SELECT NVL(MAX(EVENT_ID),0) FROM TARGET_TABLE .
    Step 2. Call the variable in the interface #EVENT_ID_SEQ+ROWNUM
    step 3. Call the variable in refresh mode and interface in the package and run that.
    This way every time you find the max (value) and using rownum gives the incrementing factor namely sequence number , Also make sure you map it to target and use Insert only and uncheck update for EVENT_ID column.
    hope this solves your issue

  • Help,Help me!   I want to create  a custom component

    The first, I'm a chinese,my English is very poor.Maybe I make so many mistakes.so
    I say sorry for you.
    I want to create a custom component so I research the Java.awt.Component .but I don't understand that the class has a method-------dispatchEvent(AWTEvent e).I want to know what invoke this method and when invoke?
    thank u

    I believe ( believe mind you )
    that the method:
    public final void dispatchEvent(AWTEvent e)
    Dispatches an event to this component or one of its sub components. Calls processEvent before returning for 1.1-style events which have been enabled for
    the Component.
    Parameters: e - the event
    Is used to send an Event message to This component from another
    like :
    Say you have 'MyComponent1' sending Events to MyComponent2
    AWTEvent e = new AWTEvent( blah whatever.......);
    MyComponent2.dispatchEvent( e );
    and then the Event Handlers on MyComponent2 if any will recieve 'e'
    You Probably don't need to modify this behaviour
    I assume you are doing something like
    public class TestComponent extends Component
    private int MySpecialExtraValue;
      public TestComponent()
         super();  // like : new Component()
         MySpecialValue = 5;  // Just an example
      // Override a Method in Component just as an example.
    public String getName()
       String S = "I am a Custom Component";
        return S;
      //Another override example
      public void repaint()
         System.out.println("repaint() was called");
         super.repaint();  // use the original Component Method
         // blah do own stuff
    }Override any methods that you need to get the required behaviour that you want...
    I hope this is a help........

  • Screensaver for iCal and iPhoto?  Want to create a central hub for family

    I want to create a central hub for the family to view iCal (e.g., daily and upcoming events) and also iPhotos. Is there a screensaver program that will automatically show this stuff on a Mac desktop when not in use?

    The only way to do that is to do the lined pages in other software (Word, pages, Pagemaker, etc) and print them to PDF using the send PDF to iPhoto option - see Old Toad's tutorial #19 for more details - http://toadstutorials.info/
    LN

  • When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account?

    When one or more family members who have been sharing one iTunes account wants to create their own iTunes account can they each upload the music/apps from the shared iTunes on their devices to the new iTunes account? 

    Yes. I would clarify your statement about the "shared" iTunes Library though. If you want each iOS device to have its own music library, you should create separate user accounts for them. Read:
    iTunes: How to share music between different accounts on a single computer
    How to use multiple iPods, iPads, or iPhones with one computer

  • My friend wanted to create a new iCloud account that was different to  her iTunes and app one when she deleted her iCloud account that was the same as her iTunes it won't let her log into her iTunes one now

    My friend wanted to create a new iCloud account that was different to  her iTunes and app one when she deleted her iCloud account that was the same as her iTunes it won't let her log into her iTunes one now what can I do to fix it she has paid or apps and songs and of she makes another account everything will be lost.
    Need help please :) thanks

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • How do I create a new account for an iPod that is on an existing account?  My brother and I have shared an account for five years, and now that I'm moving out, I want to create my own account but still want to be able to play the music I've purchased.

    My brother and I have shared an account for five years, and now that I'm moving out, I want to create my own separate account but still want to be able to play the music I've purchased over five years. 

    In order to continue to play and sync the music you purchased with your old account, you'll need to authorize your new computer/iTunes library to do so.  You can do this by choosing Store -> Authorize This Computer and then entering in your old account credentials.
    That's all you should need to.  Then just create your own account and start purchasing and using it the same you have with the old one.
    B-rock

Maybe you are looking for

  • Offline Backup Question

    Hello Everyone, I''m looking for some confirmation on what would happen in a certain situation regarding running an Offline (consistent) backup which is this:- I'm running Oracle 10G on Windows 2003. The database holds 2 schemas used by a 3rd party a

  • Error message iTunes64 Setup.exe is not a valid Win32 application.

    I've tried a few times to update my laptop with latest version of iTunes, even have uninstalled older version, and I just keep getting this message.  What am I doing wrong?  How do I fix it?  I have Windows 7, 64-bit system.  I wouldn't have even tri

  • To Merge Cross Tab Header in Web-I XI R2

    Hello All, I have one cross tab report and Its header is Name field.When we run the report, suppose we get 15 columns so 15 times the report header displays the "Name" in cross tab. I want to display the 'Name ' field only once in middle of cross tab

  • Adjustment Brush Slider Increments are DIfferent... Behavior?

    When using the up/down arrows on global adjustment sliders, with exception to Exposure/Temp in terms of numbers, the increments will be changed by 5 if only pressing the arrow keys. If holding option/alt with the arrow keys, it will change by 1. With

  • Content Management Migration Tool

    I need to be able to move content from one db to another. I know there is a propagation tool but this does not work the best for CM.. has anyone got a way to identifiy content to be moved? Thanks, Howard