Finder doesn't find new excel files

I run an online business and we store customer information in Excel files (Office for Mac 2011). When I search for names in finder, it only shows the files from 2011 or older. New Excel sheets (one is created each day for the days orders) are not found. I have one open right now with the name Trevor Alin. When I search Trevor Alin in Finder, it returns only an old sheet from 2011, it won't show todays file. The same is true for files from months ago.
Is there anything I can do to ensure finder searches new excel files?

Console is just a log reader…
/Applications/Utilities/Console
You are probably thinking of Terminal
/Applications/Utilities/Terminal
I think you may need to post to Launchbar's support unless someone else can help, I don't use it & don't know if it only uses Spotlight's index for finding items.
http://www.obdev.at/support/index.html?product=LB
Does Spotlight find the items now? If it does better than Launchbar you will need to look at how to refresh LB's index.

Similar Messages

  • Finder doesn't show new folders/files

    I've just created some new folders and files using the "save as" dialog from within Photoshop CS 8.0. Irritatingly, they don't show up in Finder. I can find them using the File>Open dialog in PS, or using, for example, Transmit.
    This seems like a very basic function of Finder which is clearly BROKEN.
    Changing views/directories/windows etc in Finder doesn't help, nor does quitting PS.
    Any hints on how to remedy and/or report this to Apple would be welcome.
    Message was edited by: NancyN

    It finally occurred to me to relaunch Finder (duh!) and now it shows the new files/folders.

  • TS3276 The Finder doesn't find ~/Library/Mail, or even "library". I need to do some experimenting to get my mail back and want to back up but can't even find a file with my messages in it.

    Trying to save my email prior to a wave of experimentation to get email working again but finder doesn't find "library". Has the library been omitted from Mountain Lion?

    Go to your Finder "Go" menu hold the option key to choose "Library".
    After that you can drag it to your sidebar for easy access.

  • Finder doesn't find

    I tried using finder to find all files with "Adium" in the name. I simply typed "Adium" in the search box and made sure that "This Mac" and "File Name" were selected in the finder window. There is an application called "Adium" installed on my computer.
    The finder found the application in the Applications folder and the "Adium_1.3.2.dmg" file in the "Downloads" folder that was used to install it, but it didn't find the many AdiumAddressBookAction*.scpt files that were in the "~/library/Address Book Plug-Ins" folder.
    What does it mean when the finder doesn't find things?

    Thanks for the answer. I am as mystified as you about the choices Apple made -- it dramatically reduces my confidence in everything else Leopard reports to me. I could go along with their choices if there were transparency and symmetry in them, but giving special and near-invisible special treatment to certain files like that in a search algorithm, of all places, seems irresponsible.
    If the Preference pane listed these strange choices it would have been a little less weird, at least they would have been in a reasonable place.
    I will follow one of your most sage pieces of advice -- to let Apple know that some of us really do want to know what's going on and aren't just content with oversimplified, consumer glitz.

  • How to create a New Excel File programmatically

    Hi !
    I am documenting acquired data continuously in an excel file, what I need to do is to create a new excel file automatically when the size of the previous file exceeds a certain limit lets say 1MB.
    I have tried using the simple 'Create/Open File' function and the 'Write to Spreadsheet File' function to create the new excel file. I does create a file but when I open the file it says the format of the file is not what you have opened it with.
    Also when the new file is created, three new worksheet are to be added programmatically with pre-defined worksheet name and also Column headers for each of the worksheet are to be added.
    I am also using 'Labview Report Generation Toolkit for Office'.
    Regards,
    Reeves
    Solved!
    Go to Solution.

    @ Aldo A
    Thanks for the reference to tutorial, I didn't know about them. They are useful in general but unfortunately they don't answer the problem of creating an altogether new excel file programmatically.
    @ ben64
    The template thing simplifies the issue of formatting the new file. But I am still working on the new excel file creation challenge.
    Let me put my problem in a different way.
    Certain data is being acquired continually and is being written to a certain excel file, when the size of the file exceeds lets say 1MB the program should start saving the data in a NEW FILE instead of the previous file.
    I have attached the VI to explain what I am trying to achieve here.
    Reeves
    Attachments:
    New Microsoft Office Excel Worksheet.zip ‏30 KB

  • Automatically create new Excel file from template using data from a selected row in a separate Excel file

    I am fairly new to Macro and VBA in Excel. I am trying to reduce the amount of work involved in a task that is performed often in our office. Currently, the task involves using 2 separate Excel files. One file is a tracking sheet and the second is the document
    that gets sent out to the client. The second document has all the same information that is inserted into the tracking sheet. What I would like to do is have the information that is in one row on the tracking sheet populate into a new excel file that is created
    automatically from an existing template.
    I have been able to make this partially work. What I have been able to achieve is have the cell that is selected in the tracking sheet (the description field) copy into the new file that is created from the template that is on our server.
    Sub NewRFI()
    ' NewRFI Macro
        MsgBox Selection.Address(ReferenceStyle:=xlA1, _
                               RowAbsolute:=False, ColumnAbsolute:=False)
        Selection.Copy
        Workbooks.Add Template:= _
            "template file path goes here"
        Range("C14").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
        Range("C14").Select
        Application.CutCopyMode = False
    End Sub
    What I need to do is get the rest of the information from that same row in the tracking sheet to copy to the new file as well. The other information includes the document number (one cell to the left of the selected cell), who it is from (one cell to the
    right of the selected cell), and the date (two cells to the right of the selected cell). As stated, this information is all in the same row on the tracking sheet. Each piece of information needs to be copied to a certain cell in the new file and I do not want
    the source formatting to be copied to the new file.
    Ideally, I would like it to operate like so: select the first cell in the row (in this case would be the document number field). Then click a button to run the macro that will then copy the information from that row in the tracking sheet to specific cells
    in the new file that is created from the template.
    This process will save us from having to either manually copy and paste the information into the new file or re-type the same information that is already in the tracking sheet.
    This is probably a simple thing to do but it would be great if anybody had some insight on this issue. Thanks in advance!

    Try code like the following. You will have to change the target cells (D25, F1 and H4) to the ones you want, I just used some arbitrary cells as example.
    Sub NewRFI()
    Dim rngCell As Range
    Set rngCell = ActiveCell
    MsgBox Selection.Address(ReferenceStyle:=xlA1, _
    RowAbsolute:=False, ColumnAbsolute:=False)
    Workbooks.Add Template:="template file path goes here"
    Range("C14").Value = rngCell.Value
    ' Change the target cells as needed
    Range("D25").Value = rngCell.Offset(0, -1).Value
    Range("F1").Value = rngCell.Offset(0, 1).Value
    Range("H4").Value = rngCell.Offset(0, 2).Value
    End Sub
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Opening new excel file by righ click produce worksheet name in french

    Hi,
    I am using Office 2010. I have strange problem. All my language setup is English. Though when I create a new excel file using right click options. It does create a new excel file with work sheet  named in French by default. I see following three worksheets:
    Feuil1, Feuil2, Feuil3.
    How can I change this to English name so everytime it creates work sheet names as Sheet1,Sheet2,Sheet3?

    Do you have a language pack installed? I assume your computer language is set to French?
    Maurice

  • How to create a new excel file using Excel Destination when Destination file not exists.

    how to create a new excel file using Excel Destination when Destination file not exists.

    Just need to set an expression for excel connectionstring and set delay validation to true and it will create it on the fly.
    The expression should return the full path with dynamic filename in each case.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Mail Finder doesn't find new files

    When I save a new file to a folder and then to add it as an attachment to a message in Mail, the finder window in Mail doesn't show the new file. I have to exit and restart Mail for the finder window to find the new file. What's going on?

    I often have the same problem, but the annoying workaround I came up with is a little quicker and less annoying than relaunching Mail. I just go into the finder (I don't even need to close the "Attach" window) and change anything about the file—change a single character in the name, move it to another folder, or the desktop, etc.—and the "Attach" window promptly sees it.

  • Indesign script to find and replace from external excel file

    I have been asked to update an existing price list (set up as lots of small tables) in Indesign (500+  pages). I have been given a new Excel spreadsheet with the product codes and new prices. I am looking for some assistance on finding or creating a script that can do such a thing if at all possible to speed up the process over just copying and pasting. Does anyone have any suggestions or point me in the right direction?

    1. Your Excel conversion to FindChangeList format idea seems okay, apart from one thing: both findWhat and changeTo strings should have double quotes around them. As they are now,
    grep {findWhat:lang1"} {changeTo:"lang2} {incl...(etc.)
    the opening one after findWhat and the closing one after changeTo are missing.
    2. Your first line contains 2 definitions. Each separate definition should be on a line of its own. (This might occur elsewhere as well, didn't check.)
    3. Any double quotes inside strings will cause problems. Precede them with a backslash to 'escape' them and convert them to a literal character. I found this one:
    "(for IC5/8"V)"
    -- change to
    "(for IC5/8\"V)"
    4. Some of your strings start with double double quotes:
    changeTo:""(MITM刀具见254页 ...
    5. To prevent your problem with this order
    grep {findWhat:Inserts"} ...
    grep {findWhat:Inserts Ordering Code System"} ...
    sort your Excel list alphabetically, case preserving, in reverse order.
    You probably also want wholeWord:true, and caseSensitive:true.
    Hope this helps!

  • Finder doesn't find all files

    Finder doesn't list all folders in a folder.
    The "ls" Terminal command does.
    For example, when looking for a group called "Gladys Knight & the Pips" in my itunes library it is not shown in the folder listing using Finder.
    Here is a snippet from Finder:
    However, when using terminal commands, it is found.
    Bobs-iMac:iTunes bobs$ pwd
    /Users/bobs/Music/iTunes
    Bobs-iMac:iTunes bobs$ ls -aR | grep "Gladys"
    Gladys Knight _ Gladys Knight & the Pips
    ./iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips:
    ./iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]:
    I'm running a clean install of OS X Yosemite, version 10.10.2

    Last login: Tue Apr 21 21:23:51 on ttys000
    Bobs-iMac:~ bobs$ cd music
    Bobs-iMac:music bobs$ ls
    iTunes
    Bobs-iMac:music bobs$ cd iTunes
    Bobs-iMac:iTunes bobs$ ls
    Album Artwork            iTunes Media
    iTunes Library Extras.itdb    iTunes Music Library.xml
    iTunes Library Genius.itdb    sentinel
    iTunes Library.itl
    Bobs-iMac:iTunes bobs$ mdfind Gladys
    /Volumes/Western Digital/Music/iTunes (under music)/iTunes Music Library.xml
    /Volumes/Western Digital/Music/Various Artists/Motown Legends, Vol. 3/06 I Heard It Through the Grapevine.mp3
    /Volumes/Western Digital/Music/Various Artists/Billboard Top Rock & Roll Hits_ 1973/03 Midnight Train to Georgia.mp3
    /Volumes/Western Digital/Music/Unknown/Shop Around/03 Nitty Gritty.mp3
    /Volumes/Western Digital/Music/Unknown/READER'S DIGEST 20 YEARS OF SOLID GOLD GROUPS Disc 3/07 MIDNIGHT TRAIN TO GEORGIA.mp3
    /Volumes/Western Digital/Music/Ray Charles/Genius Loves Company/10 Heaven Help Us All.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/06 Best Thing That Ever Happened to Me.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/07 I've Got to Use My Imagination.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/08 On and On.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/09 Letter Full of Tears.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/10 Every Beat of My Heart.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/05 Midnight Train to Georgia.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/03 Neither One of Us (Wants to Be the First to Say Goodbye).mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/04 Friendship Train.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/02 If I Were Your Woman.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips/Greatest Hits [Curb_Capitol]/01 I Heard It Through the Grapevine.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Gladys Knight _ Gladys Knight & the Pips
    /Users/bobs/Music/iTunes/iTunes Media/Music/Various Artists/Motown Legends, Vol. 3/06 I Heard It Through the Grapevine.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Various Artists/Billboard Top Rock & Roll Hits_ 1973/03 Midnight Train to Georgia.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Unknown/READER'S DIGEST 20 YEARS OF SOLID GOLD GROUPS Disc 3/16 BEST THING THAT EVER HAPPENED TO ME.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Unknown/READER'S DIGEST 20 YEARS OF SOLID GOLD GROUPS Disc 3/07 MIDNIGHT TRAIN TO GEORGIA.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Various/Shop Around/03 Nitty Gritty.mp3
    /Users/bobs/Music/iTunes/iTunes Media/Music/Ray Charles/Genius Loves Company/10 Heaven Help Us All.mp3
    /Users/bobs/Documents/Music/Various Artists/Motown Legends, Vol. 3/06 I Heard It Through the Grapevine.mp3
    /Users/bobs/Documents/Music/Various Artists/Billboard Top Rock & Roll Hits- 1973/03 Midnight Train to Georgia.mp3
    Bobs-iMac:iTunes bobs$

  • Finder doesn´t find documents in application support

    Hi there
    I saved eventually a few pages documents in the users/application support/iworks/templates/my templates folder. Now pages displays all these documents among the real templates. Of course I´d like to delete them. But Finder doesn´t display or even find them! Not even if I try to look up in all my data. Any suggestions? I´ve tried to delete and rebuild the folder, the situation is the same: the phantom templates remaining there...
    Thanks for any help

    Just got into the folder and delete them. The Finder doesn't search in the Library by default, but can be made to.
    To access your user Library, hold down the option key while selecting the Go menu in Finder. There will be a Library entry. Then make your way into that folder and move the files.
    Once you have the Library folder open, you can search it by typing in the search field. Or, you can start from anywhere and set a criteria to include system files. In the criteria dropdown, choose Other… From the list choose System Files and check the box next to it so it stays in the menu (you can do the same for file invisibilty). Now you can add that as a criteria and it will list system files (ie the ones inside the Library).

  • Finder doesn't find anymore

    In the past, I've used Finder to find large files, say, anything over 10mb, so I can delete unnecessary ones and clean up my disk.  I'll set the criteria as "Size" "is greater than" "10" "mb".  However, in the last month or so, it no longer works.  When I do a search, it doesn't find anything.  The status at the bottom says "Searching This Mac" and stays that way forever.  In the past, it started listing files immediately.  Anybody have any idea what could be wrong?
    I'm running Mac OS 10.5.8.  Latest software updates always applied.  Thanks.
    Rob

    I figured it out myself.  Awhile back, I noticed that the Mac would seem to hang, and I couldn't do anything.  Activity Monitor showed me the cause of the problem was a program called mdworker.  I did some research on the web, and found out that mdworker is part of a program called Spotlight.  I never used Spotlight, never even heard of it, and didn't see any use for it, since we have Finder.  So I followed the steps to disable it.
    I re-enabled Spotlight, and that fixed the Finder problem.  So apparently Finder relies on Spotlight for the Find function.  It doesn't need it for the normal file managing purposes.
    I guess I'll just have to put up with Spotlight/mdworker hanging my system occasionally.

  • New excel file cannot be opened with right click in any folder.

    Usually I create a new file (.xlsx) by right click inside any folder of windows 7 . Recently I am observing that it is not being possible to create a new file (.xlsx) by right click when I am inside a folder. Whenever I right click in order to create a
    new file no excel file icon or word file icon is found visible there though at that time other applications like access, power point and publisher file icons are visible. Only excel and word file icons are invisible. I don't know what the cause may be. I think
    I have turned off some option by mistake. Is there any solution to this problem? How can I have the opportunity again?

    Hi Nurulamin,
    Thanks for your post, however, since this isnot an exchange issue, I recommend you post this in Windows Client Forum
    also, as they should have more professional knowledge and you may get effective solution timely.
    Thanks for your understanding!
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Finder "Find" doesn't find everything?

    (... that's a mouthful).
    I am using the Find command to locate large documents, etc.
    To so so, I selected "SIZE greater than 10MB" and I also added "Visibility - Visible or invisible"
    When running the find however, it still does not locate at least one known item that is 150MB.
    The item is a package located in /Users/<myname>/Documents/QEMU. I can plainly see it in the Finder via the documents folder, so I'm unclear why "Find" doesn't see it. I dont see anything indicating "Packages" are excluded from the Find...... or are they?
    Thanks,
    d.

    Hi, dc and AxL —
    A mouthful, but also alluringly alliterative...
    I agree with the allegation, but my strategy differs a bit from AxL's. I still use ⌘-F ~often — I simply don't fully depend on its "first-pass" results. 1st, I depend on keeping most of my stuff organized in a way that works for me. 2nd, I'll try one or two different approaches to defining a ⌘-F / Spotlight search — preferably within the "correct" folder's window. 3rd... actually, one of those works 99+% of the time for me... I think.
    Despite its foibles, I consider Spotlight technology pretty cool — and look forward to seeing it evolve.
    Warm regards to you both,
    Dean
    Btw, in this specific case, WhatSize 10.3.9 &/or OmniDiskSweeper 1.5 — both recently updated — can be useful...

Maybe you are looking for

  • Ora 29534 while using loadjava for jar files

    I am trying to load activation/pop3/mail.jar in oracle 9.2.0.1 database. command : loadjava -user maxsb/maxsb@q71d -resolve -verbose -genmissing activation.jar but its giving me following error : resolving: class com/sun/mail/pop3/DefaultFolder error

  • New to IPOD and lost!

    I got an IPOD off of ebay and have no idea what I am doing. I have downloaded ITUNES, but everytime I log into it it tells me my IPOD is corrupt and to restore it. I have done that like 20 times. It didn't come with a disk... is that my problem? Can

  • XI Adapter

    Hi All, I'am doing a sample scenario(XI--->XI). 1.I dont know the structure of XI adapter.I've taken 2 data types for sender and receiver and 2 datatypes for request and response. 2.As my observation in HTTP--->RFC we need to create 1 http req and 1

  • Workflow Rule

    Hi Every Body! Its a Urgent, Can Any one tell me, How to use ztable user's in the task in Work Flow CRM? The following steps I follwed for to get the user's... 1.  I created a ztable for maintaining user's in CRM . 2.  I created a zfunction module to

  • I bought an EE sim, I've added a £15 smart pack but can't access the web

    I bought  an EE sim, I've added a £15 smart pack but can't access the web, it's an unlocked Galaxy S3, has anyone else had this issue?