Hi @VynetaRy
your options are limited: You can create an issue report where you group by queueTopic.
The UI of reports doesn't lend itself to a card view.
By the way, if you print a Board to PDF - it'll capture 4 columns.
(Works only if you're not on Unified Experience)
You can create a bookmarklet that temporarily hides the visual noise to PDF-print the board:
- Create a board (Main Menu > Boards)
- Create a bookmark
- Edit the bookmark:
- Name = Print Board
- URL = javascript
followed by a colon, and then paste in the below
(() => { var printHeight = "2230px"; if(location.pathname.indexOf('/boards/')!=0){alert("This only works on Workfront Boards ")}; var prevHeight = document.querySelector('div[data-testid="board-view"]').style.height;document.querySelector('div[data-testid="board-view"]').style.height = printHeight;document.querySelector('div[data-testid="board-view"]').style.overflow = "hidden visible";document.querySelector('div[data-testid="board-view"]').previousSibling.style.display="none";document.querySelector('div#navigation').style.display="none";document.querySelector('div[data-testid="board-view"]').parentNode.parentNode.previousSibling.firstChild.style.display = "none";document.querySelector('div[data-testid="header"]').firstChild.children[1].style.display="none";setTimeout(function () {window.print();document.querySelector('div[data-testid="board-view"]').style.height = prevHeight;document.querySelector('div[data-testid="board-view"]').style.overflow = "";document.querySelector('div[data-testid="board-view"]').previousSibling.style.display="";document.querySelector('div#navigation').style.display="";document.querySelector('div[data-testid="board-view"]').parentNode.parentNode.previousSibling.firstChild.style.display = "";document.querySelector('div[data-testid="header"]').firstChild.children[1].style.display="";}, 250); })()
Depending on the size of the columns you may need to set the "printHeight" - I just set it at a massive 2230px to get 3 pages.
When you click this bookmark, it will hide unneeded elements, call up the print dialog, and then restore the UI.
Example screenshot of print preview in Chrome: