Recent content by parkerjallen

  1. P

    Need Report to display additional information based on user input from form.

    I've figured out how to do what I want, but now how do I make it so a particular field is not required for it to show up on the query?
  2. P

    Need Report to display additional information based on user input from form.

    On the form from which I'm making a report, the user puts in a series of single characters in their individual boxes, which correspond to a different table. The string of characters makes up the part number. The table that stores test results is called TestResults. The form TestResults asks...
  3. P

    Need help with my query, iif statement.

    Thanks. This is the code that actually wound up working: Edit: NVM, I can't format code windows like you, but the .3 and .4 needed to be moved out a level of parenthesis.
  4. P

    Need help with my query, iif statement.

    The problem that I'm running into is that I cannot get another result besides .3 Here is my updated code: Spec: IIf((([pCon1]="E" Or "G" Or "I" Or "L" Or "N" Or "O" Or "T") And ([pCon2]="E" Or "G" Or "I" Or "L" Or "N" Or "O" Or "T")) Or [pMode]="8" Or "9",0.3,0.4)
  5. P

    Need help with my query, iif statement.

    Spec: IIF(((pCon1 = "E" or "G" or "I" or "L" or "N" or "O" or "T") AND (pCon2 = "E" or "G" or "I" or "L" or "N" or "T")) OR pMode = "8" OR "9"), .3, .4) if pCon1 and pCon2 are any of those special letters, or if pMode is 8 or 9, I need a .3. Otherwise, I need a .4.
  6. P

    Making a report the size of a specific label and print on that label.

    I want my data to go onto a report that will print on a 4-inch wide label from the Zebra 450 label printer. Anyone have any experience with creating reports on not-so-standard formats or label printing from access? In the end, I need the user to be able to click a button on the form, which...
  7. P

    Conditional Text on a Report based on multiple parameters, a couple of if-thens.

    Ok forget every variable I used in my OP, it's all about to change. Con1 = One end of the fiber. Based on values from idConnectors. The two categories here are UPC or APC. A value of D is UPC, Value E is APC, Value F is UPC, Value G is APC, and so on. Con2 = Other end of the fiber. Based on...
  8. P

    Create a Report from current record on a form

    I believe what he wants, because I am in the process of making something similar, is a button to generate a report based on the criteria of the currently selected record.
  9. P

    The sunny US

    Kansas? Just watch out for tornados.
  10. P

    Are you an atheist?

    To answer poll in a word: No.
  11. P

    Conditional Text on a Report based on multiple parameters, a couple of if-thens.

    I am going to be printing a label from a report generated from a form. Box A (which draws its options from TableA) has ~20 options. Lets say 10 of these options give me the answer immediately; AnsA The other 10 options of Box A then depend on the answer of Box B (which draws its options from...
  12. P

    Trying to copy record for use in a new one.

    Hooray it works. Now to expand the code to copy all 12 fields :D
  13. P

    Trying to copy record for use in a new one.

    Now upon clicking the button, it says Compile error: object required It highlights the Private Sub line in yellow, and also highlights the vfpn, after Set.
  14. P

    Trying to copy record for use in a new one.

    I'm trying to add a button that will copy a bunch of the fields and have it ready for the next record, as they will be doing a lot of the same tests in a row. Here is the code I have. Private Sub CopyButton_Click() Dim vfpn As String Dim vcon1 As String Dim vcon2 As String Dim vmode As String...
Back
Top Bottom