I am new to Knime and I am looking for your help, I have created a workflow with HTML format and I would like to add bold text in the last row in grand total as below
I am attaching a sample file for your reference Total_inbold.knwf (29.7 KB)
A simple way to bold the last row of your table is to append <b> value </b> tags to the values. You can do this through the ‘String Manipulation’ node and join the tags on either side of the value. It is important to note you need to escape \<b> value \<\b> the tags so the ‘Table to HTML String’ node will not revert it back to normal.
Here is an example of what you can put in the ‘String Manipulation’ node: join("\<b>" + $date$ + "\</b>")
Thank you so much for your solution, would you mind sharing this workflow in (.knwf) format, it will be very useful for me to see behind the code for these nodes.