@Victor_G has provided the correct answer, however, just for grins, I have provided how you could generate the correlations in the form that you used for your Excel model.
If you add in the 2 new columns you want and type in the Values for the column you indicated you wanted to name "Name of Test", you could then add the following formula to the second column you named as "Correl" to get your results.
dt = Current Data Table();
If(
Row() == 1, cor = Correlation( dt[Index( 1, 3 ), 2] || dt[Index( 1, 3 ), 3] )[2, 1],
Row() == 2, cor = Correlation( dt[Index( 4, 6 ), 2] || dt[Index( 4, 6 ), 3] )[2, 1],
cor = .
);
cor;
Jim