|
At 03:08 PM 12/20/2006, Eugenio Grant wrote:
>I have the ID var with numbers 1, 2, 3, 4, 5, 6, .. 3000. I want to
>keep the cases in wich the ID's last to numbers are 23, so I have to
>keep 23, 123, 223, 323, etc.
Quickly: the last two digits of a numeric variable 'ID' can be
calculated as
MOD(ID,100)
|