Have been searching the Dojo and KB this morning for info on this and I'm not finding the solution. Also, not seeing documentation on Card Deep Links (do see for pages) - is this still supported?
I have a card that shows inventory information and users are asking for a way to "see" who is buying the inventory most often. I have another card that shows this information and can be filtered to the branch and item to see which customers are buying.
I'd like to create a Deep Link to this card with the branch and item filters from the inventory card.
I can get the Deep Link to work for one or the other filter by using this format:
CONCAT('<ahref=''https://customer.domo.com/page/#########/kpis/details/##########?pfilters=','{"column":"branch","dataSourceId":"DatasetID","dataType":"string","operand":"Operand Type","values":["',`branch`,'"]}]','''target="_blank" title="Deep Link">','Link Display Name','</a>')
I've tried the beast mode below to add the item filter but when I click the link the card opens with no filters applied:
CONCAT('<ahref=''https://customer.domo.com/page/#########/kpis/details/##########?pfilters=','{"column":"branch","dataSourceId":"DatasetID","dataType":"string","operand":"Operand Type","values":["',`branch`,'"]}]',
,'{"column":"item","dataSourceId":"DatasetID","dataType":"string","operand":"Operand Type","values":["',`item`,'"]}]','''target="_blank" title="Deep Link">','Link Display Name','</a>')
Any help would be appreciated.
Thanks!