Recent content by Neo-fite

  1. N

    Query w/Indicator?

    tyvm!!! :)
  2. N

    Query w/Indicator?

    I have the following Query Example... SELECT [Name], [Reason 1], [Reason 2], [Reason 3], [Reason 4], [Reason 5] FROM [tblTest7] as Q WHERE [Region]='Canada' ORDER BY [Name], [Reason 1] Is it possible to have another column that would contain an 'x' is any of the 5 Reasons start with 'Data'?
  3. N

    Nested IIF option?

    It's not really a function, it involves using excel and creating a connection via the Data Ribbon.
  4. N

    Nested IIF option?

    I have an excel pivot table that uses the Access Data/Query as it's source. So with this change, I get a connection error that Excel can't get to that function. :mad: Is there a way around this? Or is it best to go back to the Nested IIF?
  5. N

    Nested IIF option?

    I am using Access 2007 and in one of my queries, I have a lengthy nested IIF statement where I "Group" records based on the [Cost] Field...can this portion be shortened/condensed with another function I'm not aware of? IIf([Cost]<0,"Proceeds Recv'd", IIf([Cost]=0,"$0"...
  6. N

    Complex TRANSFORM/PIVOT??

    I have a table that I want to utilize 6 Fields...1 [Name], [Reason1], [Reason2], [Reason3], [Reason4], [Reason5]. Basically, the Reasons could contain all the same values, just in prioritized differently and possibly blank. I am able to create a query that will list [Name] as the Column Header...
  7. N

    Print Access From from Excel via ADO Connection?

    I utilize ADO in Excel 2007 to connect various Access databases. I have 1 database that has 2 forms that I need to print....is it possible to do so via this connection? If so, how? :o Thanks!
  8. N

    Possible SQL/Query?

    They are just labelled as "Item" and "Item Cost". Also, there is another Field that is used for the query. The query would also require [Status] = "Sold"
  9. N

    Possible SQL/Query?

    I am wondering if the following "query" can be created using PIVOT in SQL. If so/how? I have the following non-descript Fields which are used...[Year1], [Year2], [Item] and [ItemCost] What I am looking to accomplish is having Year1 be the RowHeader, with Year2 being a ColumnHeader...however...
  10. N

    Pop Up Box

    Is it possible to display a Pop Up box for the user, but not have the code wait for a response? :o
  11. N

    Action Query: Update & Delete

    How would I go about adding a Y/N field to the records that the Unmatched query returns? I'm going to be using SQL code, as I will be doing this via a connection to Excel.
  12. N

    Action Query: Update & Delete

    OK, I have 1 query that is an Append query, of which I assume I could easily copy/change to a Delete query....however, once I run the append query, the delete query will not have any records, as the records that were just appended will be in both tables.
  13. N

    Action Query: Update & Delete

    hmmm...I'll have to look into the "Flags". :o
  14. N

    Action Query: Update & Delete

    So I need to create the unmatched query, store those results on Table3, append the unmatched records from Table1 to Table2 and then delete the matches between Table3 and Table1?
  15. N

    Action Query: Update & Delete

    I have a query that Appends unmatched records from Table 1 to Table 2. Is it possible the Delete the records from Table 1 at the same time they are appended to Table 2?
Back
Top Bottom