Search results

  1. C

    Looking for some direction.

    How to interpret these writings 824761|826233|826234 Stage Final 826877 How to interpret these writings 824762|826230 How to interpret these writings 824771 DI 825708
  2. C

    Query in Subreport help

    Try like this
  3. C

    Query in Subreport help

    In the RPT_Employees_Main report you only need to set the employees_tbl table as the Record Source.
  4. C

    Query in Subreport help

    Without a sample file it will be difficult to help you.
  5. C

    Looking for some direction.

    From the excel file it is certainly not possible to understand much how a device is managed, perhaps you should show it in tree format.
  6. C

    Looking for some direction.

    You could attach the file by replacing the sensitive data with other random ones, this to have a precise vision of what we are talking about.
  7. C

    Convert code VBA to expression in query

    Nz([Forms]![frmMastr]![txtsucc];[Success])
  8. C

    Solved Query output using multiple tables

    If you don't attach a sample file it's not possible to do it in your imagination.
  9. C

    Table relationship problems

    From what you have created it is clear that you have never read a book on access, it will be good if you do if you want to create something decent.
  10. C

    Run-time error 3048

    See here: https://www.accessrepairnrecovery.com/blog/fix-access-error-3048
  11. C

    Add Options Without Pending in search form

    Attach file.
  12. C

    Solved Multi select issue after implementation cascading combobox

    The first thing to do is learn how to manage the properties of the various table fields and in particular: Size (if the type is Text, don't always leave 255 set (this is to limit data entry to what is strictly necessary) Required (if set to yes, it does not allow saving the record if...
  13. C

    Solved Row selection & Focus Issue in Datasheet Form

    The other fields must have properties Enabled = False Locked = True
  14. C

    Solved Add multiple selected items to continuous form

    Attach your db file
  15. C

    Solved Concanetate according to date

    In the attachment a variant to the previous solution.
  16. C

    open form on specific record through listbox filter record issue

    The correct file is in the attachment, because the things to change were different. Excuse me but what you have achieved is truly something almost unwatchable.
  17. C

    open form on specific record through listbox filter record issue

    Private Sub DynamicList_Click() If Me.DynamicList.RowSource = "SELECT * from tblMasterTables WHERE MasterTablesPK>3;" Then Select Case Me.DynamicList.ListIndex Case 0 'Current Stock Me.DynamicList1.RowSource = "SELECT ItemsPK, ItemsListName, CurrentStock...
  18. C

    open form on specific record through listbox filter record issue

    In VBA the measures must be converted to twips. Private Sub DynamicList_Click() If Me.DynamicList.RowSource = "SELECT * from tblMasterTables WHERE MasterTablesPK>3;" Then Select Case Me.DynamicList.ListIndex Case 0 'Current Stock Me.DynamicList1.RowSource...
  19. C

    open form on specific record through listbox filter record issue

    It would be easier to understand and help you if you attached an example file.
  20. C

    lower level bill of materials

    You should explain the procedure part better: 1. buy raw material say 3 mtrs 2 make bosses out of raw material say 20 3 electrically tin the boss say the same 20 not calling up 40 to be made
Back
Top Bottom