Hello,
I would like to declare local values to run a macro, but I think I have a problem with values type.

Code:
local mylist 000 005 010
foreach x of local mylist {
clear
use mytable
gen ageqh=`x'
save toto`x'
}
This code returns corrects files :
toto000, toto005, toto010
but no corrects values for agegh
0 , 5, 10