Last row in text bold in HTML

Hi Team

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)

image

1 Like

Hey @madhumita3,

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>")

Here is the result:

Here is how your sample workflow was modified:

Hope this addresses your issue.

5 Likes

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.

Thank you

1 Like

Here it is!

sum each column.knwf (91.5 KB)

2 Likes

Thank you so much for your help it did work for me.

1 Like

Hey,

@thor_landstrom nice solution. Just want to propose another solution which makes use of the new HTML cell types in KNIME.

sum_each_column_native.knwf (86.8 KB)

Greetings,
Daniel

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.