I'm assuming you want the page to advance and not a drill-through. You can do this with JavaScript.
This method turns every value into a link that will invoke the next page when clicked:
- Unlock the report
- Put an HTML Item to the left of your data item that you want to be clicked.
- For the HTML Item expression, supply the following code:
<a href="#" onclick="advancePage()">
- Add another HTML Item to the right of your data item with the following expression:
</a>
- Add a third HTML Item to the bottom of your report
- Supply the following expression for the HTML Item:
JS Code:
function advancePage() {
var report = cognos.Report.getReport('_THIS_');
report.sendRequest(cognos.Report.Action.NEXT);
}
There are other variations. For instance, you could use a button instead of a text link. For all the variations, the essential technique is the same.