Given a grid like this:
What is the correct argument for Alignment so that,...
- column 1 will be flush left throughout,
- row 1 columns 2 through 11 will be centered (unlike in the image), and
- columns 2 through 11 in all succeeding rows (of undetermined number) will be decimal aligned (unlike numbers shown with a leading zero)?
I have discovered many wrong answers. The one used on the grid shown was,...
Alignment -> {
{{Left, "."}},
{{2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, 1} -> Center}
In case it matters. I'm using version 13.0.1 on Windows. The numbers were formed using,...
NumberForm[Round[100 irrcf[numbervariable], .01], {8, 2}]
..., where irrc[] is a function too long to post here.
The list used to generate the grid was,...
{{S&P Idx Tot Rtrn,13.00,16.18,17.23,-0.94,-18.16,-9.53,-21.38,-5.83,260.48,5.06},
{S&P ETF,12.90,16.20,17.30,-0.95,-18.29,-9.61,-21.39,-5.84,260.62,5.06},
{Floating Rate ETF,1.42,0.74,0.54,-0.46,-0.94,-0.47,-2.08,-0.53,-3.23,-0.13}}