Hi, I think this should be a quickie, but I'm stuck on it: How do I change the format of all the Summary Statistics of a Distribution report at once?
After formatting as I'd like, the auto-generated script shows to change it for every entry of the distribution individually like so:
SendToReport(
Dispatch(
{},
"Distributions",
OutlineBox,
{Set Title( "Summary Data Distribution" )}
),
Dispatch(
{"20 Hz (dB re: 1 kHz)"},
"1",
ScaleBox,
{Min( -10 ), Max( -1 ), Inc( 0.1 ), Minor Ticks( 1 )}
),
But I'd like to apply it to all of them at once to reduce the code significantly. I tried sending a set format to the report and a few other things, but none worked.
Thanks!
T