Announcement

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

  • Need to copy the labels of each variables

    I have a data with more than 1000 variables. I need to copy the labels of each variables and paste in a word document. Please help me to do that.
    Attached Files

  • #2
    Code:
    describe, replace
    keep name varlab
    browse

    Comment


    • #3
      Code:
      des, replace
      will clear the data set in memory and replace it with a new data set containing the results of the describe command. Then you can -keep name varlab- and then use -putdocx- to transfer the information to the Word document.

      Added: Crossed with #2.

      Comment

      Working...
      X