Search results

  1. Z

    query based on query

    Thanks for help My goal is to extract incorrectly entered dates. I found dates with a value of 0:0:0. I couldn't filter them out, so I couldn't extract them to correct them. I suggested that I convert them to numbers, which would allow me to quickly find the errors.
  2. Z

    query based on query

    Please explain to me if it is possible if I want to check a date after converting it to Double format between Min(Double) AND Max (Double) please mention What is Min smallest date in Double format What is the largest date in Double format so I can extract the incorrect dates if I use this...
  3. Z

    query based on query

    (y) (y) (y)(y)(y)(y)
  4. Z

    query based on query

    Here is the DB the error still there after removing blanks and hours and minutes and checking the date using VBA CODE
  5. Z

    query based on query

    I investigated the date field and found an unexpected value. It might be the cause, because when I created a new table with correct dates, the Year function worked. This incorrect value is the result of incorrect input for many rows, such as: Empty values Only hours and minutes Thank you all...
  6. Z

    query based on query

    When adding a groupby to query1 same error appears
  7. Z

    query based on query

    The trusted location is ok Macro enabled The immediate window is work
  8. Z

    query based on query

    First Query SELECT Year([MyDate]) AS YearfromDate FROM TransactionTable; Second Query SELECT Query1.YearfromDate FROM Query1 GROUP BY Query1.YearfromDate; Why does this error appear Invalid procedure call When run query 2 and what is the solution Thank you so much
  9. Z

    Pivot SQL SERVER

    SELECT [city], [HR], [IT] FROM ( SELECT [city], [department], sum([salary]) as Salary FROM dbo.emp GROUP BY [city],[department] ) AS myData PIVOT ( sum(myData.[Salary]) FOR myData.department IN ([HR], [IT]) ) AS mypivot the result (y)
  10. Z

    Pivot SQL SERVER

    Hello SQL SERVER not access Table Structure / employee name Department Salary City the table will be full of data ------------------------------ Pivot Table Result will be like this: department Alabama Arkansas Georgia IT 100000...
  11. Z

    how can I show show queries by vba

    how can I show show queries by vba show queries list (Properties) Navigation
  12. Z

    how to add power query to specific table by code

    Here is the last edit after editing Sub Macro3465656565665465() ' Add Power Query to the MyTable table in the MyDatabase sheet Dim powerQuery As Object Set powerQuery = Application.Workbooks(ActiveWorkbook.Name).Sheets("MyDatabase").ListObjects("MyTable").QueryTable...
  13. Z

    how to add power query to specific table by code

    Here is the macro convert Power Query To Table Here is the Problem Need to append to existing Table Sub Macro3465656565665465() ' ' Macro3465656565665465 Macro ' ' With ActiveSheet.ListObjects.Add(SourceType:=0, Source:= _ "OLEDB;Provider=Microsoft.Mashup.OleDb.1;Data...
  14. Z

    decimal[ (38,2)

    (y) (y) (y) (y) (y)
  15. Z

    how to add power query to specific table by code

    Excel Power Query Excel Table Not Access
  16. Z

    how to add power query to specific table by code

    :( not work need alot of research from my side I need to load Power query to special Excel Table by VBA
  17. Z

    how can I delete one of my posts

    (y)
  18. Z

    how to add power query to specific table by code

    How to add power query to specific table by code I failed on all my tries Thanks
  19. Z

    how can I delete one of my posts

    how can I delete one of my posts Thanks
  20. Z

    decimal[ (38,2)

    :unsure: :unsure: :unsure: :unsure: Is this the correct input Decimal (4,2) = storage will be 5 bytes
Back
Top Bottom