Announcement

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

  • How to remove specific data within one variable

    I have a list of companies and their countries as two separate variables. I want to remove all of the data of US companies. Is there a code that allows me to delete all of the US company rows and just leave me with the UK data? The countries are listed "US" and "UK"

  • #2
    Code:
    drop if country == "US"

    Comment

    Working...
    X