Tableau FAQs v0.2
Tableau FAQs v0.2
Tableau FAQs v0.2
In Data Source, there are two options: 'Live' and 'Extract' (Upper right corner).
Extracts are saved subsets of data that you can use to improve performance and Provide
offline access to your data.
Before publishing the workbook, please select 'Extract Option' and then try again.
Tableau Public:
• Step 1: Use a small data source (<15million rows) link
• Step 2: Make your story/Dashboard
• Step 3: Click on ‘File’
– select ‘Save to Tableau Public’
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
• Step 4: Login to your Tableau Public Account
4. How can I show all the workbooks on the Tableau Public Online?
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
After uploading to the public, please click “Edit Details” and check the “Other Settings” option
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
Upload that word document in Olympus under your DVT project.
There is no need to mention summary.
Incognito in Google Chrome: ‘ctrl+shift+N’ and paste the link and
check
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
Common Tableau Jargons
Reference link:
https://www.dummies.com/programming/big-data/big-data-visualization/tableau-for-dummies-che
at-sheet/
Number Functions
In Tableau, a user can use different types of built-in functions which can be applied to numbers only.
Following are the some of the commonly used “Number” functions:
a) ABS: This function returns the absolute value of the specified number.
Example: ABS(-10) = 10
b) CEILING: It rounds the given number to the nearest integer of equal or greater value.
Example: CEILING(5.1265) = 6
c) FLOOR: It rounds the given number to the nearest integer of equal or lesser value.
Example: FLOOR(5.1265) = 6
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
d) LOG: “LOG” returns the logarithm value of the number for the given base. If the base value is
omitted, base 10 is being used by default.
Example: MIN([Profit]) – This expression will return the minimum value of the profit across all the profit
values
Example: MAX([Profit]) – This expression will return the maximum value of the profit across all the
profit values
Example: POWER(5,2) = 25
Example: SQRT(25) = 5
i) ZN: “ZN” stands for “Zero if Null”. It means it returns the given expression if it is not null, otherwise
returns zero.
String Functions:
For the manipulation of different types of strings, a user can use built-in string functions in Tableau.
Following are the some of the commonly used “String” functions:
a) CONTAINS: This function returns “True” if the user’s mentioned sub-string is present in the given
string.
b) ENDSWITH: It returns “True” if the given string ends with the user’s mentioned substring
c) FIND: Similar to excel “Find” functions, in tableau also FIND functions returns the position of the
mentioned sub-string within the given string. If the sub-string isn’t found then it returns 0(zero)
d) ISDATE: This function is used to check whether the given string is a valid date. If the string is valid
date then it returns “True”
e) LEFT: It returns the specified number of characters from the start of the string.
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
Example: LEFT(“Calculation”, 4) = Calc
f) LEN: This function returns the number of characters in the given string.
Example: LEN(“Calculation”) = 11
h) MID: It returns the characters from the middle of a text string given a starting position and length.
i) REPLACE: It returns a string in which every occurrence of the substring is replaced with the
replacement string.
j) RIGHT: It returns the specified number of characters from the end of the given string.
k) TRIM: Returns the string with both trailing and leading spaces removed
Date Functions:
For the manipulation of dates, a user can use built-in date functions in Tableau. Following are the some
of the commonly used “Date” functions:
a) DATEADD: Add an increment to the specified date and returns the new date.
b) DATEDIFF: Returns the difference the two dates where start_date is subtracted from end_date
e) DATEPART: Returns a part of the given date as an integer where the part is defined by date_part.
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
f) MONTH: Returns the month of the given date as an integer Example: MONTH(#2018-02-19#) = 2
b) FLOAT: It returns the floating number from the given expression of any type
Example: INT(-9.7) = -9
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
Logical Functions:
The following are some commonly used Logical Functions in Tableau:
a) AND: This function performs the logical conjunction of two or more expressions. “AND” returns
“True” when all the given expressions are true.
b) CASE: This function finds the first that matches the given and returns the corresponding
Example:
END
c) IF-ELSE: It tests a series of expressions and returns only that value corresponding to the first
expression is true
Example:
ELSE “Loss”
END
d) OR: This function performs the logical disjunction on two or more expression. “OR” returns “True”
when any of the given expressions are true.
Aggregation Functions:
In Tableau, a user can use a different type of aggregating Functions to aggregate the required fields at
the required data level. Following are commonly used aggregating Functions:
a) ATTR: It returns the value of the given expression if it only has a single value for all the row in the
group., otherwise it displays an asterisk (*). NULL values are ignored by this function
b) AVG: It returns the average value of the given expression or array of values
c) COUNT: It returns the count of items in the group. NULL values are not counted
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.
Example: MAX([Profit]) – This expression will return the maximum value of the profit across all the
profit values
Example: MEDIAN([Profit]) – This expression will return the median value of the profit across all the
profit values
Example: MIN([Profit]) – This expression will return the minimum value of the profit across all the profit
values
h) PERCENTILE: an aggregate calculation that returns the percentile value from the given expression,
corresponding to the specified percentile value
Example: PERCENTILE([Sales],0.9) = This expression will return the 90th percentile value from all the
Sales value
Note: This document has been created with Tableau Version 2019.4 for both Public and Student Editions.