Search results

  1. D

    Assign a numerical value to a response and calculate a score

    Hi, plog. Thank you for taking your time to help me again. Yes, I do! You got me! I need to analyze lots of criteria. Every control in my form populates the same table, including my check boxes. Well, let me see. Imagine the sentence "My cat died last week"; I'm interested in its subject...
  2. D

    Assign a numerical value to a response and calculate a score

    Hi, The_Doc_Man! Thank you for your very detailed answer. Yes, I do have several check boxes on the same form. The check boxes are indeed recorded in my underlying table. I'd like to keep the results of the individual check boxes there, but I'd also like to calculate the degree of salience of...
  3. D

    Assign a numerical value to a response and calculate a score

    Hi, ridders! Oh, I'm not an expert at all, and I only mentioned those because I saw them mentioned in other forums. I'm mostly having trouble with the order in which I should be doing things.
  4. D

    Assign a numerical value to a response and calculate a score

    Hi, plog! I think I have to save it to the table where all my other answers are stored, because I want to do statistical analysis later and it's easier to work with just one value (e.g. "high salience") than with the result of dozens of checkboxes. How can I do it? Thank you.
  5. D

    Assign a numerical value to a response and calculate a score

    Dear all, First of all, I'm sorry if I haven't posted this in the right section. I'm not sure which category my problem falls into. My form contains a series of checkboxes (e.g. "animate", "human", "concrete", "definite"...). I want to assign numerical values to my answers in order to calculate...
  6. D

    Trouble with a multivalued field

    arnelgp, you're an absolute hero. Thank you, thank you for this! Can't tell you how much you've helped me today. :) it's perfect!
  7. D

    Trouble with a multivalued field

    Hi, Here's the sample DB you've asked for. Thank you very much for your time! :)
  8. D

    Trouble with a multivalued field

    Hello, arnelgp! Thank you, again, for taking your time to help me. This is what I did: • I copied and pasted the code you suggested in Standard Module (VBA). I didn’t make any changes to it – should I? • I created the query but I’m getting the error that says that “the function ‘ConcatRelated’...
  9. D

    Trouble with a multivalued field

    Hello again, arnelgp. I'm running into a small problem, I hope you can help me. Here it goes: I want to see how many times element number 6 appears in my database (alone or couple with something else). I created a small query, as you suggested, and it kind of works - except for this: I know...
  10. D

    Trouble with a multivalued field

    Hi, arnelgp! I'll try this today. Thank you for answering!
  11. D

    Trouble with a multivalued field

    Thank you, Pat, for taking the time to give me great advice. I won't be working with multivalued fields next time, and if none of the workarounds suggested in this thread work for me, I'll do what you said.
  12. D

    Trouble with a multivalued field

    Hello, I’m having some trouble trying to create a query for a multivalued field. I've read the official tutorials but, as a beginner, I'm not sure the things I'm trying to do are feasible. I hope you can help me. I work in Linguistics, and I want to describe the elements that appear in a...
  13. D

    Problem disabling controls based on the selection of a checked box

    Hello! Form_Current is not firing. I managed to disable some controls based on the selection of a combo box and Form_Current worked. I'm trying to do the same thing, but based on the selection of a checkbox instead. Once again, I'd like to thank all of you for taking time to answer my question! :)
  14. D

    Problem disabling controls based on the selection of a checked box

    Thank you for this. I'm starting to think there might be a conflict somewhere in my code. I'm a newbie, so that's possible. For instance, I've successfully disabled ALL NP... controls when cboNP_presence is NO: ' Disable options if there is NO NP If Me.cboNP_presence.Column(0) = "2" Then...
  15. D

    Problem disabling controls based on the selection of a checked box

    Hi! The error disappears (thank you!) but the On Current is not working. :(
  16. D

    Problem disabling controls based on the selection of a checked box

    That was actually my first try, but I kept getting all kinds of errors (maybe some interference from the rest of my code?). The "value" alternative was the only one that kind of worked - except in the On Current event of the form.
  17. D

    Problem disabling controls based on the selection of a checked box

    Hi! I tried that, but I keep getting the error "Invalid use of Null". Any ideas?
  18. D

    Problem disabling controls based on the selection of a checked box

    Hello. I'm new at this, so I'm learning on the go and by myself. I took off the quotes and nothing changed. I'd tried TRUE (without the quotes) before and it hadn't worked either. Again, the original code (with "-1") worked in the After Update event of my checkbox, but not on the On Current...
  19. D

    Problem disabling controls based on the selection of a checked box

    Hello, I want to disable some combos and checkboxes whenever my first checkbox (NP_clausal) is selected. I've placed the code below in the After Update event of the NP_clausal checkbox and it works. I tried to paste it in the On Current event of the Form so that whenever I go back to the...
  20. D

    Enable/disable checkbox based on the value of a combobox

    Thank you, thank you, for your fast reply! :D
Back
Top Bottom