Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to remove certain value labels within a label list

    For example, currently I have a label called job_type
    It goes:
    10001 engineer
    10002 teacher
    10003 doctor
    ...
    ...
    19999 other

    I would like to remove "10002 teacher" from this label list
    Because this label has too long a list, it is quite impossible for me to re define a new label by rewriting them all over again without including 10002.
    Is there a way after I do "label copy job_type job_type_new", I can delete the label value that I do not want completely from the list?
    like the final effect would be:
    10001 engineer
    10003 doctor
    ...
    ...
    19999 other

    Thank you very much.

  • #2
    Something like this?
    Code:
    label define job_type_new 10002 "", modify

    Comment


    • #3
      Originally posted by Dylan James-Taylor View Post
      Something like this?
      Code:
      label define job_type_new 10002 "", modify
      Legend! That works perfectly! Thank you so very much

      Comment

      Working...
      X