Can we hide a table along with its header dynamically in a word document if no rows are available for that table??
Discussion posts and replies are publicly visible
You can use an "if..else" statement to hide or show your table based on an attribute. The structure of the "if..else" statement should be like this:
[#if doc.d.showTable=='true'] show the table [#else] hide the table [/#if].
tried this one but it is giving syntax error, I am trying to compare it with a string value "N/A"
You can't compare string values. It has to be boolean or number.