Recent content by June7

  1. June7

    Solved Transform Columns in multiple rows

    Really should provide sample data as text tables or attached file, not image. Can't copy/paste data from image. Records in tblCrosstabHeading: CrosstabHeading BeginDate EndDate AOwner SELECT tblLeoM.Subsystem, tblLeoM.Owner, tblLeoM.STARTING_DATE, tblLeoM.ENDING_DATE...
  2. June7

    Solved Transform Columns in multiple rows

    Why not use DHookum's suggestion as expanded in post 13? Although, I would use underscore instead of hyphen. Also, prefix Owner with something that would alphabetically precede Begin (1_AOwner) or allow it to follow the date columns. If you need more guidance on CROSSTAB, review...
  3. June7

    Vehicle Repair Database Table & Form Design

    For your subforms, review https://www.fmsinc.com/MicrosoftAccess/Forms/Synchronize/LinkedSubforms.asp
  4. June7

    Solved Transform Columns in multiple rows

    Even a CROSSTAB query is limited to 255 fields in output. If you could have more than that, will need a more creative and elaborate procedure in Access or possibly export data to Excel.
  5. June7

    Access When emailing brings up Outlook 2016 wizard to add email account

    I upgraded from 2010 to 2021 last year. I bought Office 2021 Pro Plus from a 3rd party for $20. I don't quite remember how the install went with regard to Outlook but afterward I apparently had option to run New Outlook or revert to Old Outlook. Both show as available apps. My existing code for...
  6. June7

    Access When emailing brings up Outlook 2016 wizard to add email account

    AFAIK, New Outlook cannot be automated. Is New Outlook your default email? I don't use New Outlook at all.
  7. June7

    My Laptop's Monitor Broken. Please Advise.

    Why does keyboard need to be changed - again - what happened? By broken monitor, you mean it no longer displays anything? Replacement display in USD starts at $51.95, add cost of battery/keyboard (first and second time around) and SSD upgrade - at some point cost of maintenance exceeds cost of...
  8. June7

    Update Query using SWITCH function

    Strongly advise not to use spaces nor punctuation/special characters (underscore only exception) in naming convention.
  9. June7

    Solved Open Printer in PDF Option

    Wouldn't need to do that if you upgraded Access. OutputTo method can create PDF. Upgrading can be cheap. I bought Office Pro Plus 2021 for $20. Do you really need to stay with 2003?
  10. June7

    please help me with db, stuck with option group

    Yes, Doc meant multi-value field.
  11. June7

    please help me with db, stuck with option group

    You say an employee will only ever have one training. Linking Questions to TrainingTypeID instead of TrainingID is not conventional and source of difficulty for data entry. Employees link to Trainings but their Responses are linked to TrainingType. You want to enter data for each Training but...
  12. June7

    Form jumping around in records when i field is typed

    If you retain punctuation/special characters just keep in mind that MUST use brackets around names in queries and many code situations. I agree that the form/subform arrangement makes no sense.
  13. June7

    Form jumping around in records when i field is typed

    As noted by Gasman, controls used to enter search criteria must be UNBOUND - otherwise you change data in record.
  14. June7

    Solved Combo Box will only work if Access is not minimized

    Switchboard form is opened ReadOnly - combobox (or listbox) won't work because this is "data entry" even if not BOUND. Same as not able to type into textbox, form is locked. I tested with my form.
  15. June7

    Solved Combo Box will only work if Access is not minimized

    I have never used combobox Click event, I use AfterUpdate. However, likely that won't make a difference. Have you step debugged? Is event triggered? Is combobox Value getting selected item? Could provide db for analysis - follow instructions at bottom of my post.
Back
Top Bottom