Dear all contributors,

I am calculating Kendal correlations of more than 100 variable couples and want to transfer each correlation results into the word. However, although I have done my tries and search on the forum, I could not end up with any solution.. For receiving Kendal correlations I am using the following and it works:

foreach var in A B C D E F (and many others! ) {
ktau `var'_X `var'_Y if `var'>= `var'_Z & Dummy==1, matrix stats (taua taub score se obs p) bonferroni star(0.1)
display as result "Kendal corr of `var' = " as result r(tau_b)
}

At the end, this produces tau_b results for each variable couples and now I want to transfer only tau_b's into to the world in a nice format. I know that there are bunch of transferring commands to word but each work for estimations. If anyone could suggest me a way I would very be appreaciated.. Thanks in advance!

PS: `var'_X and `var'_Y are the variables that generated previously.