How to convert capital letters to small letters in MS excel?

How can I more easily edit CSV tables in Access or Excel?

  • I make mailing labels by pulling information about specific real-world locations into small database files. I used to get MS Access-ready DBase files, but now I have to work with CSV files, which don't seem to play well with Access. Please help me get more use out of Access, find out how to convert CSV to DBase or similar file types, or figure out better ways to use Excel. Long version inside. I make labels for specific projects by pulling location-specific addresses from a huge collection of addresses. The old program I used generated DBase (dba) files, which I then tweaked in Access, deleting duplicates and adding extra addresses, and in the process a linked Microsoft Access Database (mdb or accdb) file was created. Someone took that cleaned up Dbase file by way of the mdb, and linked to it to print individualized letters. Now we have a new system that is easier to use on the front-end, but it generates CSV files instead. Those CSV files create problems in Access, as I can create new fields for new recipients, but I cannot delete the duplicates or accidentally created rows or fields. I get the error message "Deleting data in a linked table is not supported by this ISAM." Searching online for that error message turns up solutions that involve some level of coding, which seems like it should be overkill for something that happened automatically with dba files. In looking for a CSV to DBA converter only turns up programs to purchase, and I don't know enough about Access to know what other file types that I could create from the CSV that I currently generate. The kludge fix is to delete data in Excel, but sorting data in Access was so much easier, especially when I sometimes deal with hundreds of addresses. Example data: Lot number Name Address City State ZIP455456602 Jane Doe 155 That St Cityville CA 90210455456606 John Smith 123 That St Cityville CA 90210455456644 Jane Doe 155 That St Cityville CA 90210455456646 Frank Guy 127 That St Cityville CA 90210455456647 Jane Doe 155 That St Cityville CA 90210I would delete all but one Jane Doe address, as they're going to the same place, even though she has three lot numbers. If that list isn't cleaned, Jane Doe gets three letters for the same project, and the top row are titles for the columns, so they shouldn't be sorted when I'm sorting the entries by name or address. In summary, my questions: 1. Is there some way to fix or override the ISAM error messages in Access? If not, 2. Is there an easy way to convert CSV files to Dbase files, or something else that Access will handle more easily? If not, 3. Is there a better way to sort rows of data by columns in Excel, when the rows need to stay together and the headers are the titles for the columns? Any way to streamline this process is great, because this sort of task gets done pretty frequently, and often by people in a rush. Thanks!

  • Answer:

    I think the main problem you're running into is that, when you link to a CSV file from Access, the result looks like a database table, but has pretty severe restrictions on what you can do to it. Since deleting a record would require re-writing the whole file after that point, it just doesn't allow deleting records. One solution is to import the CSV file into an Access table instead of linking to it directly. The import wizard looks very much like the link tables wizard, where you specify the layout of your CSV file, but the result is a copy of the CSV file inside the Access database. And since it's a native Access table, you can do everything with it. A similar approach is to still link to the CSV file, but then run a Make Table query that selects all the records from it and creates a new Access table from it. This can be easier in the sense that whenever you need to run the process again, you just replace the original CSV file and re-run the make table query. You don't have to run the import wizard every time this way. Either of these approaches should get you back to where you were before with the earlier format.

filthy light thief at Ask.Metafilter.Com Visit the source

Was this solution helpful to you?

Other answers

If I understand your problem with Excel correctly... 3. When you sort in Excel you want the box next to "My data has headers" to be checked. If it is Excel will list the titles of the columns as the sort options instead of Column A, Column B, etc... This keeps the header line where it is, while sorting the rest of the data.

grapesaresour

Open the CSV file in Excel. Save it as an Excel file. Import the Excel file into Access. You can import into an existing table or create a new one. Proceed as before. I'd be glad to talk you through this in more detail if you'd like. I teach Office. Although, if you have questions, ask soon before I dump all existing Office knowledge out of my brain for the summer to make room for margarita recipes and baseball scores.

SuperSquirrel

Fishbike said what I was about to. Don't link to the CSV; import it.

flabdablet

As has been said, one option is to import the CSV file and treat it as an actual table. Another option would be to link to the CSV file, then run queries against it to rid of duplicates/missing values/whatever: SELECT MIN( [lot number]) AS Lot number, Name, Address, City, State, Zip FROM name_of_linked_CSV_table WHERE Zip is not null and (lot number is not null and lot number 0) GROUP BY Name, Address, City, State, Zip ORDER BY Zip>Much easier to do in the query designer, but SQL is what it does behind the scenes anyway. Use the results of the query to create the linked Access table.>

a person of few words

Thanks for your answers! I must confess, I am a complete Excel and Access noob, so I'll be figuring my way through both programs and trying these solutions.

filthy light thief

Current solution: I open the CSV in Excel, tweak the column headers and change column order, then save as an Excel file. Then I open Access, create a blank database and import the Excel file, identifying the first row as column titles. Viola, I have an Access database! This was way easier than I had thought it would be. Sometime in the future, I'll work on streamlining this process, but I wanted to post an update before I forgot about this. Thanks again for all the suggestions!

filthy light thief

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.