Is there a split formula similar to what one uses in google docs or excel?

I'm new to the Mac Word and Numbers. I'm quick with excel and am getting frustrated in trying to quickly split up a cell using a formula in numbers.
Is there a formula to break up an address based on spaces that is in one cell? For example, a cell contains this information:
1234 Main Street Anytown, VA 12345
I'd like to take split up to in two different ways:
First, I'd like the results to look like this in:
Column 1: 1234 Main Street
Column 2: Anytown, VA 12345
Second, I'd like to results to look like this:
Column 1: 1234
Column 2: Main
Column 3: Street
Column 4: Anytown
Column 5: VA
Column 6: 12345
Is there a simple formula or wizard to use besides the right and left formula's?
I hope this makes sense. I've been struggling for an hour and know I could do it in minutes in an excel spreadsheet.
Thanks for your help.

No need to use extraneous applications.
AppleScript is our friend for this kind of task.
Here are two scrips, one for each case.
--[SCRIPT expandAddress #1]
Save the script as a Script, an Application or an Application Bundle: expandAdress.xxx
Move the newly created application into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
select the cell containing the original address
menu Scripts > Numbers > expandAdress
the script will insert the expanded address.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox.
+++++++
Yvan KOENIG (Vallauris, FRANCE)
24 avril 2009
on run
tell application "Numbers"
set {current_Range, current_table, current_Sheet, current_Doc} to my getSelection()
set aRef to item 1 of my decoupe(current_Range, ":")
set original to value of cell aRef of table current_table of sheet current_Sheet of document current_Doc
end tell
set l1 to my decoupe(original, ",")
set l2 to my decoupe(item 1 of l1, space)
set col1_1 to my recolle(items 1 thru -2 of l2, space)
set col2_1 to item -1 of l2 & "," & item 2 of l1
set result1 to col1_1 & tab & col2_1
set the clipboard to result1
set {col_num, row_num} to my decipher(aRef)
set aRef2 to my refEnLettres(row_num, col_num + 1)
tell application "Numbers"
tell document current_Doc to tell sheet current_Sheet to tell table current_table
set selection range to range (aRef & ":" & aRef2)
end tell
my shortCut(name, "v") (* paste the result *)
end tell
end run
--=====
on getSelection()
local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
tell application "Numbers" to tell document 1
repeat with i from 1 to the count of sheets
tell sheet i
set x to the count of tables
if x > 0 then
repeat with y from 1 to x
try
(selection range of table y) as text
on error errMsg number errNum
set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
return {theRange, theTable, theSheet, theDoc}
end try
end repeat -- y
end if -- x>0
end tell -- sheet
end repeat -- i
end tell -- document
return {missing value, missing value, missing value, missing value}
end getSelection
--=====
on decipher(n)
local colnum, rowNum, letters
set letters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
if (character 2 of n) as text > "9" then
set colnum to (offset of (character 1 of n) in letters) * 64 + (offset of (character 2 of n) in letters)
set rowNum to (text 3 thru -1 of n) as integer
else
set colnum to offset of (character 1 of n) in letters
set rowNum to (text 2 thru -1 of n) as integer
end if
return {colnum, rowNum}
end decipher
--=====
on refEnLettres(rowNum, colnum)
set letters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
set seuil to 26
if colnum > seuil then
set n1 to colnum div seuil
set n2 to colnum - (n1 * seuil)
set enLettre to character n1 of letters & character n2 of letters & rowNum
else
set enLettre to character colnum of letters & rowNum
end if
return enLettre
end refEnLettres
--=====
on decoupe(t, d)
local l
set AppleScript's text item delimiters to d
set l to text items of t
set AppleScript's text item delimiters to ""
return l
end decoupe
--=====
on recolle(l, d)
local t
set AppleScript's text item delimiters to d
set t to l as text
set AppleScript's text item delimiters to ""
return t
end recolle
--=====
on shortCut(a, t)
tell application a to activate
tell application "System Events" to tell application process a
repeat with i from 1 to count of t
keystroke ((character i of t) as text) using {command down}
end repeat
end tell
end shortCut
--=====
--[/SCRIPT]
--[SCRIPT expandAddress #2]
Save the script as a Script, an Application or an Application Bundle: expandAdress.xxx
Move the newly created application into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
select the cell containing the original address
menu Scripts > Numbers > expandAdress
the script will insert the expanded address.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox.
+++++++
Yvan KOENIG (Vallauris, FRANCE)
24 avril 2009
on run
tell application "Numbers"
set {current_Range, current_table, current_Sheet, current_Doc} to my getSelection()
set aRef to item 1 of my decoupe(current_Range, ":")
set original to value of cell aRef of table current_table of sheet current_Sheet of document current_Doc
end tell
set l1 to my decoupe(original, ", ")
set l2 to my decoupe(item 1 of l1, space)
copy my decoupe(item 2 of l1, space) to end of l2
set the clipboard to my recolle(l2, tab)
set {col_num, row_num} to my decipher(aRef)
set aRef2 to my refEnLettres(row_num, col_num + 6)
tell application "Numbers"
tell document current_Doc to tell sheet current_Sheet to tell table current_table
set selection range to range (aRef & ":" & aRef2)
end tell
my shortCut(name, "v") (* paste the result *)
end tell
end run
--=====
on getSelection()
local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
tell application "Numbers" to tell document 1
repeat with i from 1 to the count of sheets
tell sheet i
set x to the count of tables
if x > 0 then
repeat with y from 1 to x
try
(selection range of table y) as text
on error errMsg number errNum
set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
return {theRange, theTable, theSheet, theDoc}
end try
end repeat -- y
end if -- x>0
end tell -- sheet
end repeat -- i
end tell -- document
return {missing value, missing value, missing value, missing value}
end getSelection
--=====
on decipher(n)
local colnum, rowNum, letters
set letters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
if (character 2 of n) as text > "9" then
set colnum to (offset of (character 1 of n) in letters) * 64 + (offset of (character 2 of n) in letters)
set rowNum to (text 3 thru -1 of n) as integer
else
set colnum to offset of (character 1 of n) in letters
set rowNum to (text 2 thru -1 of n) as integer
end if
return {colnum, rowNum}
end decipher
--=====
on refEnLettres(rowNum, colnum)
set letters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
set seuil to 26
if colnum > seuil then
set n1 to colnum div seuil
set n2 to colnum - (n1 * seuil)
set enLettre to character n1 of letters & character n2 of letters & rowNum
else
set enLettre to character colnum of letters & rowNum
end if
return enLettre
end refEnLettres
--=====
on decoupe(t, d)
local l
set AppleScript's text item delimiters to d
set l to text items of t
set AppleScript's text item delimiters to ""
return l
end decoupe
--=====
on recolle(l, d)
local t
set AppleScript's text item delimiters to d
set t to l as text
set AppleScript's text item delimiters to ""
return t
end recolle
--=====
on shortCut(a, t)
tell application a to activate
tell application "System Events" to tell application process a
repeat with i from 1 to count of t
keystroke ((character i of t) as text) using {command down}
end repeat
end tell
end shortCut
--=====
--[/SCRIPT]
Yvan KOENIG (from FRANCE vendredi 24 avril 2009 19:56:54)

Similar Messages

  • Hi out there. To capture a screen shot one uses: Command-Shift-3 or 4. I have done this for a long time. Now suddenly neither screen shot works anymore. Suggestions how to get this useful function back? Thanks, Georgx

    Hi out there. To capture a screen shot one uses: Command-Shift-3 or 4. I have done this for a long time. Now suddenly neither screen shot command works anymore. Suggestions how to get this useful function back? Thanks, Georgx

    Command-Shift-3 and 4 works just fine on several Macs that I have here.
    Try restarting your Mac....or post in the specific support area for your Mac model....for more advice.
    https://discussions.apple.com/index.jspa

  • Is there a way of finding out what my used GB's were used on?

    sometimes I seem to have up or downloaded far more bits than I think I have... way above my average usage.... I'm running widows 8.1 on an acer laptop and latest android on an asus 7HD.... any suggestions appreciated. thanks Mark

    thanks for reply.. have had alook at the link and it tells me the info I alredy know ie. data used. what I am trying to find out is what the data was used on.Is there a way of getting more information from the internet history on my laptop or tablet?or any other way of finding out what the data was used for?thanks Mark PS perhaps I shoud have said earlier I have an EE mifi dongle that is only used for internet stuff 

  • What is using the memory? help please.

    i just noticed that in the bottom of my finder it says i only have 7.42 gb available. i do have a lot of photos and music on my computer, but i have taken off things like garage band, which i never use.
    i feel like 7.42 is very little, and i am wondering if there is a way to see what is using the memory (and how much each application is using). i just have an ibook g4 and i didn't get anything added to it when i bought it, i am just worried i have a bug eating my memory.
    any suggestions?

    Hi annamaria,
    WhatSize will show you the size of every file/folder on your computer. Photos can take up a lot of space especially if you have the individual files and have imported them into iPhoto. In that case you have two of each.
    It's doubtful there's any bug taking the hard drive space. Over time we just accumulate more and more and slowly run out of space.
    John

  • Is there any way to find out what brush is applied to a path?

    I'm trying to write a script: select some paths, run the script, then each path that has a brush applied to it is changed to use a random brush whose name is sufficiently similar to its current brush. The application is pretty obvious - draw a bunch of lines in, say, 'ragged marker 1', then give it some extra liveliness by having five or six 'ragged marker' brushes that get randomly chosen.
    The problem I'm running against is that as far as I can tell, Illustrator only lets Javascript set what brush an object is using with brush.applyTo (artItem), but I can't seem to find any way to find out what path a brush is currently using via JS.
    Am I just not looking in the right place of the Javascript reference, or is this really a thing that only has a setter, with no corresponding getter?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

  • Are there any apps which will allow local calling using data only that do not require any special numbers called out initially and does not require the receiver to have a similar app or account?

    Are there any apps which will allow local calling using data only (not minutes, no extra charge) that do not require any special numbers called out initially and does not require the receiver to have a similar app or account?  Just for random local calling.

    Yup.
    Here is a way you could solve this by adding an extra column and a small lookup table:
    The lookup table is here for the copying:
    0
    1
    k
    kilo
    2
    M
    mega
    3
    G
    giga
    4
    T
    tera
    5
    P
    peta
    6
    E
    exa
    7
    Z
    zetta
    8
    Y
    yotta
    In table 8 (the one on the left in the image) column A is where the values are. 
    B1=A1÷(1024^VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 1))&" "&VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 2)&"B"
    this is shorthand for... select cell B1, then type (or copy and paste from here) the formula:
    =A1÷(1024^VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 1))&" "&VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 2)&"B"
    select cell B1, copy,
    now select all the cells in column B, paste

  • Is there a way of finding out what has been accessed on my MacBook Pro whilst in the possession of an apple authorised service centre?

    Hi Guys,
    I'm a bit new to this discussion group thing although I've been using Macintosh computers for many years (showing my age).
    I handed my MacBook Pro to be repaired at an authorised apple service centre. When I handed it in they said they needed to keep hold of it to run some diagnostics and requested my password. I've owned various models of mac for the the past 17 years and this is the first hardware problem I have encountered, hence I have never bothered to set up user accounts. 
    As I live in quite a remote part of Sweden I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks) or share some of my personal information (scanned copies of my birth certificate, passport, certificates, photos, etc.) on the web. Is there a way of finding out what activity has taken place whilst they've had it in their possession?
    I appreciate any advice you guys can offer.
    Thanks!
    PS: I've already thought about the 'recently opened' menu and The machine in question is a MacBook Pro 17" (2011) running OS X 10.6.8 (need Rosetta).

    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks) or share some of my personal information (scanned copies of my birth certificate, passport, certificates, photos, etc.) on the web.
    If you put your info into the computer and hand it to another, you have to assume they will copy everything.
    Why are you putting scanned copies of valuable identity information into a computer than can be hacked, stolen, lost or compromised by a dirty tech?
    Have you lost your mind?
    Is there a way of finding out what activity has taken place whilst they've had it in their possession?
    No. The tech would just deny it if he did, or tell the truth which the answer would be "NO" in either case.
    The employer won't ask that sort of questions without solid proof, less they make a enemy of the employee and/or risk being sued for defamation of character.
    It's not like they bother to have a team of people watching over his shoulder that he doesn't stick a USB thumb drive of your data into his pocket to take home.
    I am paranoid that some untrusted technician is going to make a copy of my music (11,000 tracks)
    If it's iTunes music, it has your personal ID embedded into the song files. Most IT techs know this though.
    I appreciate any advice you guys can offer.
    Too late now, all you can do is not worry about it.
    Take your personal info out of the machine and if you need it, burn cd/dvd copies, a few USB thumb drives, Iron Keys or self encrypting external storage drives with key and/or keypad.

  • With the new actualization of my ipod, app store wont let me download apps like kik, tumblr and more, i really need kik cause theres were i text my friends, what is happening?

    With the new actualization of my ipod, app store wont let me download apps like kik, tumblr and more, i really need kik cause theres were i text my friends, what is happening?

    What does "new actualization" mean?
    Do you have Restrictions set that world prevent installing those apps? Settings>General>Restrictions

  • I have a MacAir, mid 2011 model, and want to view video on my TV.  I see that I need a mini display port to Hdmi but there are many of these.  What exatly do I need and how does one view a movie downloaded to the MacAir on a TV screen?

    I have a MacAir, mid 2011 model, and want to view video on my TV.  I see that I need a mini display port to Hdmi but there are many of these.  What exatly do I need and how does one go about viewing a movie downloaded to the MacAir on a TV screen?

    Welcome to Apple Support Communities
    That's exactly what you need. A Mini DisplayPort to HDMI adapter and a HDMI cable. See > http://support.apple.com/kb/HT4241?viewlocale=en_US
    This is the only way to view a video on the TV. After connecting your MacBook Air to the TV, image on your TV should show immediately. Then, press Command and F1 keys to mirror your MacBook Air display, and open the video

  • I'm setting up my MacBook Air and it tells me to sign in with my apple ID but when I try to sign in it says there's a server error. What do I do? Do I try to skip the step?

    I'm setting up my MacBook Air and it tells me to sign in with my apple ID so that I can set up features like iTunes and iCloud and such but when I try to sign in it says there's a server error. What do I do? Do I try to skip the step? How can I fix this?

    The following previous discussion may help, in particular the last post (1/22/2014 by frankjet7): https://discussions.apple.com/message/21295536#21295536

  • My iphone was stolen and we actually recovered it!  Is there a way I can tell what the thief might have looked at in the interim? I know about hitting the home button twice to see recently used apps, but what if they then swiped to close them?  TIA

    My iphone was stolen and we actually recovered it using the find my iphone app!  Is there a way I can tell what the thief might have looked at in the interim? I know about hitting the home button twice to see recently used apps, but what if they then swiped to close them?  i just want to know if this <bleep> was looking through my private info.  TIA

    Sorry marcia,
    There is no way to tell what activity went on on your device when it was out of your hands.
    Sorry,
    GB

  • I want to transfer my music from one computer to another, however a large majority of my songs are already on the new computer, is there a way to transfer only the ones not there? or to see what songs are only on the one computer

    i want to transfer my music from one computer to another, however a large majority of my songs are already on the new computer, is there a way to transfer only the ones not there? or to see what songs are only on the one computer

    Welcome to the Apple Community.
    Homesharing gives you the option of seeing only the content in the shared library, that is not already in your own library.

  • Is there a way I can send what I'm watching on my Mac to a TV in the house Note I do have ITV

    is there a way I can send what I'm watching on my Mac to a TV in the house Note I do have ATV

    Yes, if the Apple TV is located where it can receive a strong wireless signal from your wireless router. You will still need to connect from the Apple TV to the TV using an HDMI cable. Not possible to send the signal via wireless directly to your TV.

  • Is there a way of finding out what lists in sharepoint are being looked up for document templates etc

    Hi,
    I am currently in the middle of setting up SharePoint sites and have come across many lists that have not been updated for a while. I am wondering is there a way of finding out what lists are being used and what lists aren't being used for example I would
    like to find out if a list is being used for a look up.
    Josh
    J Burns

    I don't think there any such option available OOTB, however you can use PowerShell to get such information e.g.
    $web = Get-SPWeb http://localhost
    $f = $web.Lists["Contact"].Fields["Customer"]
    $f.ListsFieldUsedIn()
    $web.Dispose()
    Check this link: http://sharepoint.stackexchange.com/questions/45574/is-a-list-being-used-as-a-lookup-for-some-web-part-in-the-site-collection
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

  • Is there a way to programmatically tell what version of LabVIEW a VI is compiled in?

    Is there a way to tell programmatically what version of LabVIEW a VI is compiled in?
    LabVIEW seems to know.  If you click on "List Unsaved Changes", it (sometimes?) tells you the version of LabVIEW that the VI is already saved under (i.e., 8.0 instead of 8.0.1).  So if LabVIEW knows, maybe they've provided a way for us lower-echelon folks (i.e., customers) to know too, eh?
    Is there a way to get this from, say, VI Properties (i.e., Property Node gets passed a ref to a VI & I select the right property name)?  I couldn't find any property name that has "version" or anything like that, but maybe what I'm looking for is using terms that are so different than what I'm expecting that I just can't tell.
    Or by some other method?  (I gvimmed a few .vi files, and see some stuff that looks like I *could* get the version by parsing/searching the file itself, but parsing the binary might give pretty unreliable results.)

    Just dro a proerty node on the diagram and select property: "Application...Version number" and display the resulting string output.
    Message Edited by altenbach on 07-02-2006 11:33 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    version.png ‏9 KB

Maybe you are looking for

  • View option

    View otion of folder option is not working. I use Satellite, model no - L305-S5955. Dr. rakib

  • EPM 11.1.2 - wallet file errors trying to start foundation services.

    Running EPM 11.1.2 in a distributed environment. Middle tier is on linux REHL 5 VM, sql server database. Essbase servers are all linux REHL 5 servers. We have faced several challenges getting the environment up and stablized. Most recently after seve

  • Code for select statements needed

    Hi Please give the code for this Code (BUKRS), Vendor (LIFNR), Vendor Name (ZNAME1), PO_Date (AEDAT), PO Creator (ERNAM) from EKKO table 2. For the corresponding PO number (EBELN) from EKKO table, get PO Item Text (TXZ01) from EKPO table 3. For the c

  • How to give decimal data type in abap

    hi i m getting all the data from table and doing calculation i m using field TOTAL field for doing total total = neter + kbetr total = 150.50 + 120.20 here in my out put answer is coming like below total = 270 but i want total = 270.70 THANKS IN ADVA

  • After clean install cannot print to pdf with Acrobat 8 Pro

    I recently had to do a clean install on my desktop computer.  Is there some way I can print to pdf with my Adobe Acrobat 8 Pro, which was working fine prior to the clean install.  I am aware Adobe no longer supports this version, but isn't this progr