Dear all,

I want to create a directory using a local I want to iterate through. More specifically,
Code:
local subdir2 = "data_management\build\datasets\"
local datasets_anchor ak iq1 sc

foreach df of local datasets_anchor {

    merge 1:1 id_ch using  "`subdir2'"`df'".dta", update
    drop _merge
}
Thus, in the first iteration I want to have
Code:
merge 1:1 id_ch using "data_management\build\datasets\ak.dta"
How can I achieve this?