Search results

  1. A

    Recover data from corrupted table

    I was hoping you could help me with recovering data from a corrupted database. I have a huge table with almost 600K rows and 140 columns. I went to Database Tools, Visual Basic, Tools, References. There was a broken utility file. I removed it by unchecking the box and closed and returned to my...
  2. A

    Left in Iif Statement for Update Query

    I was able to uncheck it, close and reopen and complete the update query successfully. I was also able to write the 2nd query based on the first query. Thank you so much, I've been having a lot of trouble with my tables and databases corrupting and I've been fixing it the hard way by...
  3. A

    Left in Iif Statement for Update Query

    The answer to #1 = no The answer to #2 = I followed your instructions and am receiving the following: "Your Microsoft Office Access database or project contains a missing or broken reference to the file 'utility.mda'."
  4. A

    Left in Iif Statement for Update Query

    I think my table is corrupt. Easy way to fix?
  5. A

    Left in Iif Statement for Update Query

    I received an error, "Undefined function 'Left' in expression".
  6. A

    Left in Iif Statement for Update Query

    Sorry, here is the error message: The expression you entered has a function containing the wrong number of arguments.
  7. A

    Left in Iif Statement for Update Query

    I'm trying to perform an update query based on an Iif statement. If the condition is met, then I want to map the left portion of the tax_zip for 5 characters and the same for the right hand portion of the taxp_zip for 4 characters. I'm getting errors, can you tell me where my error is...
  8. A

    Extracting data from String

    Thank you Lagbolt but I was looking for something to use in an update query. I do not know VB.
  9. A

    Extracting data from String

    Hi Lagbolt, Thank you for your response. I love working with data but have not done it to this level in Access. Don't worry about this request, we can close it, I've decided it is much easier to do this extraction in Excel and then import the results/new column back into Access. Maybe I was...
  10. A

    Extracting data from String

    My question is that I need assistance with a formula to extract what I have written above. I am having a lot of difficulty with it so I have posted the question. It is definitely too technical for me. If it is too technical for this forum, please advise and disregard this request for...
  11. A

    Extracting data from String

    I need to perform an update query in access to a column in the same table which is currently null/blank. I'm trying to extract residential legal descriptions from a string. I would like to extract the 'Lot' and 'Block'. Below is a good example of my data: BLK 1 LT 45 BLK 1 LT 46 ACS 0.3595 BLK...
  12. A

    Format Zip Code

    I have a table where the zipcode holds 9 characters. I would like to perform an update query to add any leading zeros to the first set of 5 characters and then produce output including a dash: 99999-9999. I tried this, but getting "undefined function in expression" error: Update to...
  13. A

    Convert Checkbox to text

    Can you assist me in converting a checkbox to text? I need to do it two ways: 1. Checkbox on = X; Checkbox off = (null) 2. Checkbox on = Yes; Checkbox off = No Thankx a ton! Kelly
  14. A

    Concatenate and Trim

    Thanks Alan.... so can I do an update query to accomplish this? So then in the 'update to', do I insert the following: Trim([ST_DIR1]) one for every data point?
  15. A

    Concatenate and Trim

    I have a table, containing the following data points: ACCT_NUM ST_NUM1 ST_DIR ST_NAME1 ST_SUFFIX SUITE SITE_ADDR Using an update query, I want to concatenate and trim: ST_NUM1 ST_DIR ST_NAME1 ST_SUFFIX SUITE and place into the SITE_ADDR field, so that the data in SITE_ADDR looks like...
  16. A

    concatenate, trim and nz

    Sorry, here is the string I'm using in my query to create the new field for concatenated address: ConcAddr: IIf(Nz([ST_DIR1],"", [ST_DIR1], " ")) & Trim([ST_NAME1]) & " " & IIf(Nz([ST_SUFFIX],"", [ST_SUFFIX], " ")) & Trim[SUITE]
  17. A

    concatenate, trim and nz

    I'm trying to concatenate an address with trim and nz. I need to determine whether or not ST_DIR1 and ST_SUFFIX exist. If they do not exist, then I want the ST_NAME1 and SUITE to display if any, else the entire address (concatenated with spaces in between and no leading or trailing spaces)...
  18. A

    Append Query - too many rows

    Both tables have the exact same number of rows.... 96406 I wasn't able to set a primary key... Access did say there were duplicates. Hmmm, maybe I do need multiple joins.... I'll take another look at the data. Thank you so much for your help. :) Since you asked, here's the SQL code for the...
  19. A

    Append Query - too many rows

    I am hoping to get some assistance for MS Access append query. I have two tables with a one to one ratio, number of rows is 96406 in both tables. I have joined the tables by an Acct_Num. Simple right? I want to append to a table which currently has no rows. No matter how I join the tables...
  20. A

    Realtor

    Hello, my name is Kelly and I am from Fort Worth, Texas, USA. I used MS Access several years ago and not again until now. :)
Back
Top Bottom