Announcement

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

  • #16
    Is the merge command in Stata case sensitive? i.e. can I merge T12345678 with t12345678?

    Comment


    • #17
      Yes, it is case sensitive. If you want to merge these two, you need to change the first to lower case

      Code:
      replace var= lower(var)
      or for the second

      Code:
      replace var= proper(var)
      where "var" is the name of the identifier in the merge.

      Comment


      • #18
        Thank you Andrew. I will do. The data is coming from two sources and there is no consistency in capitalisation.

        Comment

        Working...
        X