Is there a way to automatically add accordions on a field? I want to have each Product ID have its own accordion (and for new accordions to automatically appear when I add new products). Query below (inNPS is passed in from another report).
Thanks!
select 'dbr.hdr', 'Product';
select 'dbr.hdr', 'Comment';
select
p.product as "Product",
c.comment as 'Comment',
c.sentiment as 'Sentiment',
from nps.relComments c
join nps.products p on c.productID = p.ID
join nps.relProductStats s on ( (c.customerID = s.customerID) and (c.productID = s.productID))
where s.productNPS = inNPS
order by s.productID;