Announcement

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

  • I have date as a variable and I'd like to drop all dates except one.

    As title says I wish to delete all date values except for one specific date. Values are structured in DD/MM/YYYY

    Thank you

  • #2
    Hi Max,

    Try:
    Code:
    replace date_var = . if date_var != mdy(#,#,#)
    Hope this helps!
    -Nikki

    Comment

    Working...
    X