Search results

  1. A

    Solved How to achieve Pivot

    OBJECTIVE: Period Taken is Feb 2024 CY MTD Column is a total amount for Feb 2024 Period CY YTD Column is a total amount from Jan 2024 to Feb 2024 Period PY MTD Column is a total amount for Feb 2023 Period PY YTD Column is a total amount from Jan 2023 to Feb 2023 Period COHN314 and COHN315 are a...
  2. A

    Pivot inside Select Query

    hi everyone. is it possible to union transform query? SELECT * FROM ( TRANSFORM Sum(t0.TotCost) AS SumOfTotCost SELECT t3.HierarchyLine+'.02' AS Hierarchy, t3.HierarchyMain, t3.HierarchyDetails, t0.LedgerDet, t1.ThisPeriod, t2.YTD FROM (([Main Table] AS t0 LEFT JOIN (SELECT LedgerAcct...
  3. A

    Is it possible to change duplicate value to zero in specific column by query?

    Hi @June7 kindly check my attached image. if PO Amount are redundant, when you pivot the data, it will sumup.
  4. A

    Is it possible to change duplicate value to zero in specific column by query?

    Yes Sir. so whenever this would be extracted to excel and user will do a pivot. it's easy for them
  5. A

    Is it possible to change duplicate value to zero in specific column by query?

    OBJECTIVE: To create a Result making duplicate value as zero in PO Amount AVAILABLE TABLES: PO Table Suppliers Table This is what my SQL query so far: SELECT t1.*, t2.* FROM PO_Table t1 LEFT JOIN SI_Table t2 ONE t1.[PO Number] = t2.[PO Number] `
  6. A

    Trying to access database in MS Teams

    hi @theDBguy thank you for your reply. i have thoughts on converting my access to sharepoint list but unfortunately i cannot find any solution on connecting sharepoint list using excel vba ado.
  7. A

    Trying to access database in MS Teams

    OBJECTIVE: to access database in MS Teams using excel vba macro. CODE: Dim DataStr As String Dim connStr As String DataStr = "https://xxxx.sharepoint.com/sites/TRF/Shared Documents/General/database.accdb" connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & DataStr & ";" _...
  8. A

    Solved Consolidate Employee Time In/Out take time to load.

    Thank you for your answer
  9. A

    Solved Consolidate Employee Time In/Out take time to load.

    TABLE: Table_Test OBJECTIVE: to consolidate employee according to their time in, time out, and roster type. RESULT: EXPLANATION: If Employee was not on leave nor late nor early out. The Rostered Type to be retrieved is always Start and End. If Employee was Late. The Rostered Type to be...
  10. A

    Solved SQL query advise for inventory item and set

    hi @ebs17 i already saw your sample. thank you so much for this. this is a very big help for me.
  11. A

    Solved SQL query advise for inventory item and set

    hi @ebs17 my apology for not getting back to you sooner. i will now check today and get back to you soonest. advance blessed new to all of you. thank you.
  12. A

    Solved SQL query advise for inventory item and set

    Hi @ebs17 and @jdraw thank you for your reply and my apology for my post was not clear. with @ebs17 both question, its Yes. as an example to my post, let say the vendor has 4 pcs. of apple, 6 pcs of Banana, 4pcs of Mango and 0 orange. these are the available items in the inventory. now the...
  13. A

    Solved SQL query advise for inventory item and set

    hi @mike60smart thank you for your reply. i already updated my post.
  14. A

    Solved SQL query advise for inventory item and set

    AVAILABLE ITEM: itm_bundle column represents the item (per piece) included in the bundle). OBJECTIVE: To create a correct query for an inventory item per piece and per set. In order to produce an item set, the smallest qty of item piece will the basis: Example for Set A: a combination of 1...
  15. A

    How to catch keyreturn in Listview

    because next year we're planning to migrate in windows 10 32bit
  16. A

    How to catch keyreturn in Listview

    yes since i am at is with listview than listbox.. but do you think windows 32 it will?:(:(:(
  17. A

    How to catch keyreturn in Listview

    yes i tested it in textbox and it works fine. but in listview it doesnt. hmmm maybe because listview is not part of access? unlike in excel? since we need to declare the listview first like... Dim LV As MSComctlLib.ListView im not so sure with this.
  18. A

    How to catch keyreturn in Listview

    hi sir arnel, thank you for your reply. i tried keypress event but still no luck. i dont know why only vbkeydown=vbkeyreturn or keyascii=13 cannot be catch. the rest keys are fine. i tried changing the option/Client Settings/ Move after enter to Dont move or next field as well
  19. A

    How to catch keyreturn in Listview

    hi may i know why it wont catch the enter key in listview control in access. Private Sub lvCMAList_KeyDown(KeyCode As Integer, ByVal Shift As Integer) Dim DirFile As String Dim NewCtr As Integer Dim BOk As Boolean Dim msg Dim LV As MSComctlLib.ListView Set LV =...
  20. A

    Creating Report with Table Format

    if ever i am going to reconstruct my data table, is there any possible i can achieve the report? thanks
Back
Top Bottom