Search results

  1. KenHigg

    Rounding and Decimal Place Issue

    Don't guess Ive ever done that before -
  2. KenHigg

    Query two tables and return all data from both tables

    Seems like a union query is what you need - Edit: Beat me to the punch...
  3. KenHigg

    Rounding and Decimal Place Issue

    Do you need to declare the vars? ??
  4. KenHigg

    Transform

    You're welcome - please let us know how you proceed, I like learning new tricks :)
  5. KenHigg

    Transform

    I think I get the gist of what are trying to do. The problem is you are, in a sense, trying to create dynamic field names which is typically bad juju in database world. You could go to the trouble of writing code to create field name on the fly but then you have to map data values to these...
  6. KenHigg

    Transform

    What are you doing with the data after you get it in the desired format?
  7. KenHigg

    Run-time error 3078

    Um... I don't recall using sql to manipulate a recordset object. Try plugging the table name in the sql instead of 'rst'. Edit: Or you can use rst.delete to remove the current record after you utilize it...
  8. KenHigg

    Run-time error 3078

    I like to create the query in the query builder then copy the sql to a text string. Maybe you should try this - ?
  9. KenHigg

    Issues related to DSum VBA

    If I remember correctly domain functions (Dsum(),Dmax, etc) should only be used when there are not many rows in the dataset. Having said that you may try indexing the lookup fields and see if that speeds things up...
  10. KenHigg

    Win 7 or 10 ISO

    I am trying to get Access up on my iMac and have installed VMware Fusion. I have an OEM Win 7 disk but after having issues the VMware help desk says the OEM disk contains executables (which Fusion does not like) instead of an ISO file(s)? MS help gave me a link to download the ISO file but I am...
  11. KenHigg

    Run Event Code Of Another Form

    Ok - so I was just looking in the wrong place. Thanks -
  12. KenHigg

    Ordering a Calculated field on a report

    In the query builder, instead of just selecting the column name do something like MyCalculatedFldName: FldName1 + FldName2 to add two fields, etc...
  13. KenHigg

    Run Event Code Of Another Form

    Not at all, my response to the original user was flippant ... On another note: I was in BestBuy yesterday and did not see MS Access in the Office 365 group. I wonder if they are ending the application - ?
  14. KenHigg

    Ordering a Calculated field on a report

    Can you calculate it in the reports query then sort on it?
  15. KenHigg

    Run Event Code Of Another Form

    yeah - sounds like you inherited a monster. Is the re-write slated for MS Access or some other platform?
  16. KenHigg

    Run Event Code Of Another Form

    I am a bit rusty and may have my syntax mixed up... Seems like the best option is to slice out the code to be called from multiple places and put it in a separate module. But it sounds like this has already been attempted...
  17. KenHigg

    Forms Appearing Underneath

    Maybe on the form 2 open event do something like: application.Forms.Item("Formx").SetFocus
  18. KenHigg

    Run Event Code Of Another Form

    So when referencing a sub form you must reference the subform object that reside on the main form first: forms!myMainformName.mySubFormOjectname!mySubformName etc You may have tried this. My apologies if you have...
  19. KenHigg

    Forms Appearing Underneath

    Maybe make form 2 modal?
  20. KenHigg

    Run Event Code Of Another Form

    Cool - outside my flippant response a few years back, did you get your question answered in regard to running code from a second form?
Back
Top Bottom