How to disable the automatic "sum" (last row) when dumping the results of a query?
Options
Hi,
I used linqpad to gather some data and whenever I dump the results out, the last entry in always a "total" or "sum" of the rows above. Is there any way to disable this feature?
Thanks
Denise
I used linqpad to gather some data and whenever I dump the results out, the last entry in always a "total" or "sum" of the rows above. Is there any way to disable this feature?
Thanks
Denise
Comments
-
You can disable this globally in Edit | Preferences > Results.
Click on 'Custom' style sheet for HTML results and add the following css customization:td.columntotal { display:none }
-
Thanks Joe, is there any way to disable it when exporting to excel as well?
-
No, but you'll be able to do this in the next release, by specifying a flag when calling Dump.
-
@JoeAlbahari - I tried the style sheet override in v8.5.5 (X64) but it didn't work.
I can specify anoTotals
property on each Dump() but it'd be better if there was a way to turn off totals globally so I don't have to specifynoTotals
on every Dump(). -
Try
tr.columntotal { display:none }