Recent content by triplell89

  1. T

    Excel Macro to control other programs

    I looked for some information about doing that on the web, but I couldn't find anything. Do you care to explain?
  2. T

    Excel Macro to control other programs

    So I'm at work and one of my co-workers needs like 1000 accounts entered into a web user interface manually. Sure, I could just knock it out, but the mouse clicks are always the same. I've used macro's for games back in my script kiddie games, however I can't install these programs on my work...
  3. T

    What am I doing wrong?

    yeah, I wondered about that...I would like to each row to compare to eachother, and then filter the results...but I guess this is impossible. What if I used just 1 table, created an expression with that table which would be the first word in that column. I then want to compare each row to that...
  4. T

    What am I doing wrong?

    Here is my sql: SELECT Distinct [Profiles in Engine].NAME, Left([profiles in engine].[name],InStr([profiles in engine].[name]," ")) AS Left1, [Profiles in Engine_1].NAME FROM [Profiles in Engine] AS [Profiles in Engine_1], [Profiles in Engine] INNER JOIN Sender_SRTs ON [Profiles in Engine].NAME...
  5. T

    Fuzzy Search

    SELECT [Table1].NAME, [CopyTable1].NAME FROM [Table1], [CopyTable1] AS [Copy] GROUP BY [Table1].CUSTOMERNAME, [Copy].CUSTOMERNAME; This gives me two columns, however the length of the rows in the query becomes however many entries there are squared, meaning that a large table would become very...
  6. T

    Fuzzy Search

    I tried something like this before, all I get is the first three letters of every field... Then I tried left(namefield,3) = left(expr1,3) but with no avail.
  7. T

    Fuzzy Search

    I have a list of accounts that I want to compare to itself and find similiar names. For example, you have a list of words: Angle Angel Orange Banana Bananna Banana1 Blue I want to produce a query that would compare this list to itself, and Give an ouput like so if the first three letters...
  8. T

    Unique ID's in Two fields of table.

    This is kind of weird, but I tried this: SELECT DISTINCT SNDR_TC FROM MTRC_MSG_DTL UNION SELECT DISTINCT RCVR_TC FROM MTRC_MSG_DTL I got a list back, like I wanted, however it seems like some of the information on it isn't in the table. For example, I have ID #ACU2402, but I can't find it in...
  9. T

    Unique ID's in Two fields of table.

    SELECT DISTINCT SNDR_TC, RCVR_TC FROM MTRC_MSG_DTL GROUP BY SNDR_TC, RCVR_TC I want the result to be 1 column. Like I said, imagine I have two lists. I want to combine the two lists, and remove the duplicates from the list.
  10. T

    Unique ID's in Two fields of table.

    I was toying around with those, but I am unable to get the information into 1 list form. Also, it doesn't seem to work correctly
  11. T

    Unique ID's in Two fields of table.

    Hi, First I would like to say that I know that SQL is very powerful, so this operation should be possible. I have a table containing two ID fields: Sender, Receiver. How can I view the unique values of both fields? The fields have the following rules: 1. 1 sender can have multiple...
  12. T

    Appending to a table + Number

    yeah...I knew I could use some vba code to do it, and I know it's not a good idea to have spaces in table names/field names...I didn't make the table :)... Thanks for your help though. I'm pretty good with VB, so I should be able to handle it. Btw, you're code looks pretty good.
  13. T

    Appending to a table + Number

    I know how I could do it in excel, however I know you should be able to do it in access, and I don't want have to import to excel and back to access every time I do this. The number's are not unique, and I can't simply go back and change it to an auto number. They are used in a heiarchy that...
  14. T

    Appending to a table + Number

    I might just end up writting some vba code that will increment it for me...however I've never used VB along with access.
  15. T

    Appending to a table + Number

    Is there a reason there is 15 views and no replies?
Top Bottom