Test 1 Flashcards

1
Q

Which table calculation returns the number of rows from the current row to the first row in the partition?

A

FIRST()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which table calculation returns the index of the current row in the partition, without any sorting with regard to value?

A

INDEX()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which table calculation returns the value of the expression in a target row, specified as a relative offset from the current row?

A

LOOKUP()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which table calculation might return the following rankings : 1,1,1,4,4,6,7,7,7,10?

A

RANK()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which table calculation might return the following rankings : 1,1,1,2,2,3,4,4,4,5?

A

RANK_DENSE()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which table calculation might return the following rankings : 3,3,3,5,5,6,9,9,9,10?

A

RANK_MODIFIED()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which table calculation might return the following rankings : 1,2,3,4,5,6,7,8,9,10?

A

RANK_UNIQUE()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which table calculation returns rankings as percentiles?

A

RANK_PERCENTILE()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you import a custom shape into Tableau?

A
  1. Save your custom shape in a new folder in My Tableau Repository/Shapes
  2. Click on the Marks Card’s drop down menu and select Shape
  3. Reload the shapes palette and select your new shape
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What file type is created when you save a flow?

A

.tfl

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What file type is created when you save a packaged flow?

A

.tflx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which formats can be used to create an output form your flow to use in Tableau Desktop?

A

1 .hyper
2 .csv
3 .xlsx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which file do you need to update to create a custom color palette?

A

Preferences.tps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What data roles does Tableau Prep Builder provide?

A
  1. email
  2. URL
  3. Geographic roles
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you replace a sheet in a dashboard?

A
  1. Select the sheet you want to replace in the dashboard
  2. Hover over the replacement sheet from the list on the left
  3. Click the Swap Sheets button that appears
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you replace a data source?

A
  1. Open a workbook that connects to the original data source
  2. Select Data > New Data Source and connect to new data source
  3. On the Data Source page, drag a table to the canvas to set up the data source
  4. Go to the sheet tab and select Data > Replace Data Source
  5. Select the Current data source and the Replacement data source from the dialog box
17
Q

How are milliseconds represented in custom date formatting?

A

.000

18
Q

What formats are available for downloading a view from a published dashboard?

A
  1. Image (.png)
  2. Data
  3. Crosstab
  4. PDF
  5. PowerPoint
  6. Tableau Workbook
19
Q

What are the Quick Table calculations available?

A
  1. Running total
  2. Difference
  3. Percent difference
  4. Percent of total
  5. Rank
  6. Percentile
  7. Moving average
  8. YTD total
  9. Compound growth rate
  10. Year of year growth
  11. YTD growth
20
Q

How do you apply a quick filter to all sheets in your workbook using a related data source?

A
  1. Right click field in the Filters shelf
  2. Select Apply to Worksheets > All Using Related Data Sources
21
Q

What is CASE statement syntax?

A

CASE <expression>
WHEN <'value1'> THEN <'then1'>
WHEN <'value2'> THEN <'then2'>
...
[ELSE <'default'>]
END</expression>