I’ll experiment with this. I tried the earlier solution you suggest with the if product.tag and it didn’t work but I tried if product.type and it worked. so I set up my template a little different and it worked. Heres what it looked like in the product.template file -
{{ product.description }}
{% if product.type contains 'Diamond Lapping' %}
{% render 'diamond-lapping-table' %}
{% endif %}
{% if product.type contains 'Lapping Films' %}
{% render 'lapping-table' %}
{% endif %}
{% if product.type contains 'Microfinishing Films' %}
{% render 'microfinishing-table' %}
{% endif %}
Pretty cool to see it work. Really appreciate your help!