I'm new to PHPR and had a question about the editor.
I've got a three-row result from a query that I'm displaying vertically. All's fine, except that all three columns in the output have the row labels and that's looking a bit cluttered.
I'd like to remove the row labels from all but the first record, so that it acts as the label for all three vertical records.
What I currently get:
col_name1 rec2_val col_name1 rec2_val col_name1 rec3_val
col_name2 rec2_val col_name2 rec2_val col_name3 rec3_val
What I'd like to get:
col_name1 rec1_val rec2_val rec3_val
col_name2 rec1_val rec2_val rec3_val
Anyone know a way to do this?
Thanks!