HI,
I cannot reproduce this problem. The following are my testing codes, could you try again?
void test()
{
Worksheet wks("Data1");
Column tempcol = wks.Columns(0);
string str, strPage;
wks.GetPage().GetName(strPage);
tempcol.GetName(str);
str = strPage + "_" + str;
str.Format("stat.ds.data$=%s",str);
LT_execute(str);
out_str(str);//Now, str is "stat.ds.data$=DATA1_A"
}
Iris