Skip to main content
Nintex Community Menu Bar
Question

table summaries label

  • July 10, 2024
  • 1 reply
  • 4 views

Forum|alt.badge.img+7

Is there a configuration or custom development way to change a column summary label from let’s say SUM to Total?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+3
  • Nintex Employee
  • July 10, 2024

Not sure if this is the best way, but it was quick.  You can use css:

.nx-summary .type{
    display:none;
}

.nx-summary .nx-fieldtext:after{
    content: “(Total)”;
    text-transform: none;
}

If you have more than one summary, you would need to be more specific in the css, however.