Hello,
In an html table viewed in outlook can I remove or blank out the product if there is no value in the qty of bottles column.
In the top table I want to remove Balvenie Doublewood 12yo or the second table Aerstone Sea Cask
For the points table I have
@rosscortb Please use compose actions. In your case it will still leave Product header if both html tables are equal.
Use in this way-
Please 'Thumbs Up' the posts that helped you and 'Accept as Solution' if my post answered your question.
@Hardesh15 Actually had another thought on it so tried this.
Thanks
Ross
@Hardesh15 Can you break down a little more for please? I'm struggling to follow that.
@rosscortb Construct your table in a compose rather than using from select. You need 3 compose actions for this.
In first compose you need to construct blank <tr><td> for product only then in second compose in which you will have product <tr><td> only then in 3rd compose construct whole html code. Then use condition
if(equals(output(compose2),output(compose1),null,output(compose2)) in 3rd compose.
Example-
Compose1 <tr><td>Product</td><td></td></tr>
Compose2 <tr><td>Product></td><td><if(...)</td></tr>
Please 'Thumbs Up' the posts that helped you and 'Accept as Solution' if my post answered your question.