Recent content by Miked13

  1. M

    Create a list until a total is reached

    Originally Posted by Gasman View Post Select records whose percentage would total 80% ? You're correct Gasman, need to select the records that total to around 80%. Luckily the percentages are 0.06% so the jumps wont be as drastic. "Select SKU where Sum of Percent =80%" i think something like...
  2. M

    Create a list until a total is reached

    for my own sanity I hope this isn't as simple. I will try and let you know.
  3. M

    Create a list until a total is reached

    Hey Gang! Been :banghead: a while trying to figure out how to do this and definitely need help. Have a list of SKUs along with their usage percentage. Need to create a way to have Access(or Excel, depending on which is better equipped) list the SKUs that make up 80% of my usage. let me know...
  4. M

    Playing with Emails!

    PBaldy, Yeah, it was an odd one. Best way i can explain it, for some reason "me.txtbox.value" wouldn't not pull the value into an outlook email generator or message boxes. But it worked in showing up in a hidden form, so I used that. lol.
  5. M

    Playing with Emails!

    (Solved)Playing with Emails! Thank you all for the help. I solved the issue by using a hidden form with the values of the primary form. Still dont know why the code wasnt working tho.
  6. M

    Playing with Emails!

    Sadly, i have yet to be victorious on my adventure. I have changed to simply trying to pull data from the form through message boxes. I have added this line for testing. Msgbox "You have sucessfully added " & cboPartNumber.value & " to the list" Everything works, but the value is not listed...
  7. M

    Playing with Emails!

    Yes Pbaldy, i have confirmed the email address is the correct data in that column(text box is visible for checking). Thanks Mark, always forget about using message boxes for these things. It is pulling up blank. I think i know whats wrong, let me try a few things and get back to you all next...
  8. M

    Playing with Emails!

    Tried varName = Me.[txtRequester].[column](1), same thing. thanks!
  9. M

    Playing with Emails!

    Hello Everyone! Today I am exploring the wonderful world of sending Emails automatically. Please see code below: Private Sub btnEnter_Click() If (DCount("*", "qryDuplicateRequest") = 0) Then DoCmd.GoToRecord acForm, "frmRequest", acNewRec End If DoCmd.Close...
  10. M

    Trouble with an IF statement

    Good day All, I created an If statement in a New Record button to check if the new entry is a duplicate, if its unique then it allow the record to be saved. If the new record is a duplicate it will not add the new entry. Unfortunately it seems to be allowing the entry. I thought i had it...
  11. M

    Adding Conditional If statement to change a Auto Number field

    Thanks Minty, I agree with your observation, guess its what happens when you are self taught by youtube and forums. Have a lot of different style code interacting(like a combustion engine made out of duct tape and pottery). I will work on cleaning up the relationships now :) The database is...
  12. M

    Adding Conditional If statement to change a Auto Number field

    Here is the relationship table
  13. M

    Adding Conditional If statement to change a Auto Number field

    Plog, you totally broke my head. I currently have a requester table being used, but not sure how this would help in this instance.
  14. M

    Adding Conditional If statement to change a Auto Number field

    This would work for a default but I need to have it changed depending on the requester. Can i place a If statement in the Control Source?
  15. M

    Adding Conditional If statement to change a Auto Number field

    Yep, i read that earlier. I'm trying to use nested if statements to take the autonumber into another field and add a letter. for some reason i cant get the field to be populated
Back
Top Bottom