I entered first and last name correct.but my ID not founded.what should i do?

i entered my name and email correct.but my ID not founded!why?MY phone is disabled,version is beta ios7.

I wonder if Apple will ever find their own answer to Macros... you know, in a non-virus way...
AppleScript has been around since 1993 (I think) and isn't known for vulnerability to viruses. It works similarly to VBA macros, except that it is not "built into" Numbers the way VBA is built into Excel.  You run it from Script Editor or as a menu pick from the Scripts menu or (if placed within Automator) from the Services menu or a keyboard shortcut.
Below is a short script that reads the names in selected cells, splits them into a last name and first-middle, and places them on the system clipboard.
To use:
Copy-paste into Script Editor
Select the cells with the names you need to "split"
Click the run button in Script Editor
Click once in the first destination cell in Numbers.
Command-v to paste.
Just a quick copy-paste. No formulas or messing with text editors!
SG
tell application "Numbers"
  tell document 1 to tell active sheet
  tell (first table whose selection range's class is range)
  set pasteStr to ""
  repeat with aCell in selection range's cells
  set v to aCell's value
  set AppleScript's text item delimiters to " "
  set fstMidName to v's words 1 thru -2 as string
  set AppleScript's text item delimiters to ""
  set lName to v's last word
  set pasteStr to pasteStr & fstMidName & tab & lName & return
  set the clipboard to pasteStr
  end repeat
  end tell
  end tell
end tell
The result:

Similar Messages

  • HT201412 my i pad air doesnt respond, it's time and battery icon on display work, sleep and home botton work. but display is not responding. what should i do

    my i pad air doesnt respond, it's time and battery icon on display, sleep and home botton work. but display is not responding. what should i do. thank you so much

    http://support.apple.com/kb/ht4097 You have to plug the ipad into a cpu with itunes and then follow these articals.
    http://support.apple.com/kb/ht1414

  • HT202058 iphone 6+ somehow has switched my name on emails into my nephew's name. We share a first and last name but not a middle name. For example, my name might be John George Doe and his name John James Doe. How did this happen? How do I correct it.

    iphone 6+ somehow has switched my name on emails into my nephew's name. We share a first and last name but not a middle name. For example, my name might be John George Doe and his name John James Doe. How did this happen? How do I correct it.

    So if the solution recommended by Ralph is not working then the other option is this:
    Please make sure that the emails work correctly when signed into, on a computer
    Then delete the account off your phone - you will not lose the emails
    Reset the phone
    Re add the account back in and see if that helps the issue
    Thanks

  • After installing some updates on final cut pro 7 is asking me to enter my first and last names plus serial number which i dont have. how do i go about this?

    After intalling some updates for Final cut, I m asked to put my first and last names and serial number which unfortunatelt i do not have. how do i go about this?

    To add to what BenB advised, make sure you have proof of purchase when you call Apple for a replacement serial number.
    For future reference, it is a good idea to keep all software serial numbers in a database or text document.  Considering the cost of the software, keeping a list of serial numbers can come in very handy at times like this.
    -DH

  • How can I display the first and last name using a paramater as employee ID?

    Hi SAP,
    I have a parameter that is called {? Employee ID}.   What I want to do is display the first and last name based on the employee ID value entered in {? Employee ID} in the page header of the report.  Right now, when I put the following formula in the page header only some pages get the right result while other pages dont....
    if table.employeeid = {? Employee ID} then
    table.firstname" "table.lastname
    It appears as though if the first record in the details section on the beginning of each page happens to be the employee under {? Employee ID} then it prints it correctly, if it isn't I get a null value in the page header.
    Anyone have any ideas?
    Z

    Hi Try this,
    Whileprintingrecords;
    if ={?EmpID} then
    Also check the option "Default values for null" in the formula editor.
    Regards,
    Vinay

  • Problems with envelope-printing in Address Book: First and Last names

    New entries I make in Address Book are printing incorrectly, with Last name then First name. Most of my older entries print correctly as First name then Last name (though oddly I have a small batch of entries I imported ages ago which have always exhibited the same transposition problem).
    I have prefs set to display entries by Last name. Problem entries WILL print correctly if I change this to 'display by First name'. (older entries print correctly regardless of 'display by..' pref).
    I'm having the same problem if I create a new account, which made me suspect the app was corrupted, but not helped by deleting app and re-installing from Tiger DVD then running combo updater.

    Thank you for the suggestion.
    However, it doesn't make sense for the LIST display-order to swap the first-and-last names on an ENVELOPE. Secondly, most of my entries DO print correctly: it's only NEW entries that transpose the first and last names.

  • First and Last Name Swapping

    Address book in Leopard does not have the Swap First Name with Last Name in the drop down menu on the desk top tool bar. All my addresses are indexed with last name first, and I want to continue to keep my records this way. Does anyone know where the Swap First and Last Name control is in Leopard Address Book? Thanks

    Hi:
    The menu items have been renamed somewhat in Leopard. I don't have Leopard in front of me at the moment, but this option should still be available on a per-card basis (or per a selection of cards) within Address Book's Card menu. And the global setting in preferences will affect all of the cards that don't have this setting customized individually.

  • E-Recruitment business partner objects missing First and Last Name

    Hi,
    We are on Netweaver 2004s and ERecruitment EHP3...it's installed on production but not activated.  We are finding a bunch of BP records that exist where there is no First and Last Name on them, however the CP object does have this data.  We can't figure out what is causing this to happen to some candidates?  It appears to only be the case on External/Unregistered Candidates.
    Thanks,
    Michelle

    Hi Michelle,
    could you share the number of the note?
    Kind regards
    Roman

  • How do I bulk edit contact's nicknames to first and last names?

    i imported contacts to the contacts app and they all say "NoName".
    i click on one of them and the first and last name fields are empty but the nickname field has the first and last name in it.
    how can i bulk edit 1120 contacts to change the full nickname to a first and last name?
    ex: "First"  ~  "Last"  ~  "Nickname"
           "Blank"  ~  "Blank"  ~  "John Smith"
    i want to to be:
           "John"  ~  "Smith"
    help me create an applescript or use a program or something cuz its killing me....thanks
    ohh and i used both of the following applescripts and nothing happened:
    tell application "Address Book"
       set all_Persons to every person in group "Test"
       repeat with per_son in all_Persons
           set nknm to per_son's nickname
           set per_son's first name to word 1 of nknm
           set per_son's last name to word -1 of nknm
       end repeat
    end tell
    ANDDDDDD
    tell application "Address Book"
       set {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, space}
       repeat with onePerson in (get people whose nickname is not missing value)
           set N to text items of (get nickname of onePerson)
           tell contents of onePerson
               set first name to text items 1 thru -2 of N as text
               set last name to text item -1 of N as text
           end tell
       end repeat
       set AppleScript's text item delimiters to ASTID
    end tell
    neither did anything...

    to any1 that wants to use the scripts and have them work just type "save" on the next like after end tell and itll do it........

  • Displaying current user's first and last name on a report.

    I would like to dispay the current user's name on a report. I've tried using User() and NQ_SESSION current user .
    These two options display the User ID (i.e. User name is Jon Smith. there ID is COMP/JSMITH.
    Using the two methods above the ID (COMP/JSMITH) is displayed. Is there a way I could display Jon Smith?
    I thought their might be a way to use Full Name or First and Last Name.
    Message was edited by:
    user618827

    VALUEOF(NQ_SESSION.DISPLAYNAME) will do the trick
    Mike L

  • How to show the First and Last name of the user instead of user name

    Gurus,
    We have the full email id of the user as the portal user name. Right now we are using the "Item Attributes - Current User" to show the user name. We don't want to show this anymore. We would like to show the First and Last name of the user on the Portal page. How can i do this. Please post a reply if you have some idea about it.
    Thanks
    Raj
    ---------

    I believe this is possible using the security APIs. See http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/PLSQL/DOC/PLDOC_9026/INDEX.HTML and look for person_info (Returns user information, given a user name)
    under wwsec_api
    Suggest posting any follow-up questions to the Security forum - http://forums.oracle.com/forums/forum.jsp?forum=6

  • How can i change the ID on my wifi so it doesn't include my first and last name?

    How can I change the ID on my Wifi so it doesn't include my first and last name when others see it?

    If you are still having difficulty
    Open Macintosh HD > Applications > Utilities
    Locate the listing for AirPort Utility and Right Click on it
    Click Get Info
    Look for the Version in the next window that should appear on the left side of your screen.

  • I have the macBookPro and the problem is the mouse pad does not work I tried everything but still does not work what should i do ?

    I have the macBookPro and the problem is the mouse pad does not work I tried everything but still does not work what should i do ?
    so i'm using the usb mouse

    I want to clarify the issue.
    The issue is with the MBP trackpad, and it works fine with an attached USB mouse.
    With some ingenuity, you might be able to fix this yourself, but I suggest visiting your local Apple Store/Genius Bar. Some have fixed this issue and have posted their results online, but the Apple Store should be your first destination.
    Post here with your results!!

  • I try download for premier pro and after affects but says page not found what happens?

    I try download for premier pro and after affects but says page not found what happens?

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    If the email hasn't arrived after a few hours and isn't in a spam filter, you need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (113969)

Maybe you are looking for

  • Migration to new mac fails

    I just got a new macbook and am trying to migrate from my old macbook. Both are running 10.6.6. I hook them up via Ethernet and run Migration Assistant. After I type the passcode from the new mac onto the old mac it starts with "Preparing information

  • Linux Drivers Redux...

    I have a MSI Mast23 2 FAR running with 1 Opteron 240s. I have Gentoo intalled ont he box.   I can't seem to get the sound working.. Which driver should I be using?  I tried the snd-via23xx (or whatever) and that doesn't find a good card.    I tried t

  • Hello I just bought the usb super drive and for some reason when I put the disc in and download the application it won't show.Just a bunch of words will show up.

    Hello I just bought the USB super drive for the mac book pro and for some reason when I put the disc in and I download the content and for some reason when I put the aplication just a bunch of random words come out,not the content the disc brings.

  • Guided Procedures and online interactive adobe forms.

    Hi Experts, Scenario : User have to log into GP runtime, When he clicks the first action it should display the adobe form. He  has to fill the details and submit the form. This form is routed for Approver 1 for review. The first approver will log int

  • ARP cache

    Hi ! My MacBook (466) kernel said (console): "could not enable ARP cache poisoning detection..." Do you know what the reason is and how to solve it ? Best regards; lachala