Questions tagged [drilldown]

To drill down means to move from summary information to detailed data by focusing in on something. In a GUI-environment, "drilling-down" may involve clicking on some representation in order to reveal more detail.

From Wikipedia's article on drill down:

To drill down through a series of folders, for example, on a desktop means to move through the hierarchy of folders (from the top downwards) to find a specific file or to click through drop-down menus in a GUI. Clicking on an item moves you to a level of greater detail. When an online user accesses more and more pages of the website, he or she may delve deeper into the content of the site. As a web-surfer goes further into a website, he or she goes deeper into the back pages and thus deeper into data. (Of course, he or she could also begin—for example via an external search engine—at a detailed view, and drill up to the front page of the site.)

Drilling down through a database involves accessing information by starting with a general category and moving through the hierarchy: from category to file/table to record to field. When one drills down, one performs de facto data analysis on a parent attribute. Drilling down provides a method of exploring multidimensional data by moving from one level of detail to the next. Drill-down levels depend on the data granularity.

372 questions
2
votes
1 answer

Tree search with Lucene

I have a taxonomy index that describes a tree structure. When performing a query I want to get the number of hits for multiple categories (not necessarily in the same level of the tree). For example, given the following list of paths: [Root/Cat1,…
synack
  • 1,699
  • 3
  • 24
  • 50
2
votes
2 answers

Recursively drilling down the Nokogiri Tree

I want to drill down the tree, and store all the levels: search_q = Regex.new("Some search regex here") #something like: page.search('body').first.children.select {|x| x.text[search_q]}.first.children.select {|x| x.text[search_q]}.first......ad…
Mr. Demetrius Michael
  • 2,326
  • 5
  • 28
  • 40
1
vote
1 answer

SSRS create hyperlink on report to aspx page of my application with some value as querystring.

I want to send SSRS report field as querystring paramater to my application page. for this I have done following steps: To add a hyperlink in report: In report design view, right-click the text box I want to add a link and then click…
SST
  • 459
  • 3
  • 20
  • 35
1
vote
0 answers

Selective Pivot DrillDown with Composite Naming of New Tabs

I'm attempting to automate a daily excel report procedure with vba and am in over my head (just started exploring macros and vba this year). We have a pivot as shown below. We drilldown selectively based on rather data populates a current or…
1
vote
1 answer

Power BI synced drill-down

I am currently developing a live report for colleagues to use to investigate a certain business area. I've tried to find a solution to be able to sync the drill down function on all charts on the report to always show the same data. My charts all…
JeppeBay
  • 131
  • 6
1
vote
1 answer

Does MetaBase provide drill-down functionality?

I want to implement drilling in metabase dashboards. I discovered 'Custom Destinations' option which navigates user to any link upon clicking on a chart, but it does not carry forward the filter for selected dimension. Is there any way we can…
1
vote
0 answers

Titanium appcelerator Android Drill down

I am having difficulties to find a way to drill down my tableview created for Android. I have 2 or 3 levels of data and I see its not working the same way as for iOS so my question is how the hell to implement drill down for Android? I heard it…
devjs11
  • 1,898
  • 7
  • 43
  • 73
1
vote
2 answers

LINQ: Can I get a property from an object in a list, within a collection?

foreach (ReportType t in reportsCollection) { List reps = (from r in t.reports where r.isChecked == true select r).ToList(); foreach (Report r in reps) System.Diagnostics.Process.Start(new…
Yatrix
  • 13,361
  • 16
  • 48
  • 78
1
vote
0 answers

Highcharts: drilldown doesn't hide previous series

i have a chart that doesn't hide the previous series when i click for the drilldown on a column. New series is added, but beside of the old series, how can i solve the problem? I also tried to not adding a new series, but simply keeping the…
1
vote
1 answer

Tableau incorrect average field value on drill up level

I am very much new for tableau and working on a report in tableau with two level drill-down. I have three fields named 'Sales' and 'Quantity' and 'Avg-Price'. I need the correct value of 'Avg-Price' (?) when I drill-up on company level. See below…
Haritus
  • 90
  • 7
1
vote
1 answer

Power BI drill-trough button does not work on Ctrl+Click (left eye), but works on Ctrl+Enter?

I have Power BI drilltrough button (with action and destination) and it works on Ctrl+Enter, but does not work on Ctrl+Click (neither button of the mouse works). What can be the problem? How to debug this?
TomR
  • 2,696
  • 6
  • 34
  • 87
1
vote
0 answers

Is the Drill Through (or Drill Down) functionality for RDLC report only available for web applications?

We have several Crystal Reports that are used in a Windows Form application that we are re-creating using RDLC. One of the reports needs the ability to drill through (or down) to more detailed data. I've followed several examples (mostly for SSRS)…
1
vote
0 answers

Android drill down navigation using recycler view

I am creating a list based navigation for a file system. The database contains FOLDERS and FILES. Each FOLDER can have FOLDERS or FILES. After clicking a FILE user can see its content. The drill down navigation logic that I have written is that I…
1
vote
0 answers

Interactive Drill Down from State to County Map in Tableau

I am trying to create a [State] to [County] drill down map in Tableau where I can click on the state and it zooms into the county view. I've managed to create a dropdown menu that achieves this, however clicking on the state does not. I've looked at…
Sam
  • 21
  • 2
1
vote
0 answers

Using both hc_motion and hc_drilldown in R Highcharter Map

I am trying to use both hc_motion and hc_drilldown within a highcharter map. I can manage to get the hc_motion working with the full map, and also a drilldown from a larger area to its smaller ones (UK Region to Local Authority in this…