简体   繁体   中英

Drill down when a single cell is clicked on a cross table

I currently have a cross table that I have built that contains quite a few aggregations (using custom expressions) broken down by names on the vertical. Upon clicking on a cell I would like to show the details behind that data point. However, when clicking in the cross table it automatically selects the entire row and this shows all of the details behind that row, which is not what I want. Is there any way to setup a cross table so that you can click on a single cell (sort of like you'd have the ability to do in Excel)? The only solution I can think of would be to build multiple cross tables with single calculations, so that when clicked it will show the detail data behind that single value.

Thanks so much for the help and possible solutions!

You can write your custom expressions with an if statement - sum(if([name]='a',1,null)) write one for each name on your vertical then remove the vertical break down leaving only the expressions that have each category already split. this way you can select a single cell value. this method does require a lot more expression in your cross table.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM