SlideShare a Scribd company logo
1 of 135
AGENDA
Number Functions
String Functions
Date Functions
Type Conversion Functions
Aggregate Functions
Logical Functions
www.edureka.co
Number
Functions
1.
www.edureka.co
www.edureka.co
1. Number Functions
Number functions allow you to perform computations on the data
values in your fields. Number functions can only be used with fields
that contain numerical values. www.edureka.co
ABS
ACOS
ASIN
ATAN
CEILING
COS
COT
DEGREES
DIV
EXP
FLOORS
HEXBIN
LN
LOG
MAX
MIN
PI
POWER
RADIANS
ROUND
SIGN
SIN
SQRT
SQUARE
TAN
ZN
1. Number Functions
www.edureka.co
Function Syntax Description
ABS ABS(number) Returns the absolute value
of the given number.
Example:
ABS([Budget Variance])
1. Number Functions
www.edureka.co
Function Syntax Description
ACOS ACOS(number) Returns the arc cosine of
the given number in
Radians.
Example:
ACOS(-1) = 3.1415926
1. Number Functions
www.edureka.co
Function Syntax Description
ASIN ASIN(number) Returns the arc sine of the
given number in Radians.
Example:
ASIN(1) = 1.5707963
1. Number Functions
www.edureka.co
Function Syntax Description
ATAN ATAN(number) Returns the arc tangent of
the given number in
Radians.
Example:
ATAN(180) = 1.5652408
1. Number Functions
www.edureka.co
Function Syntax Description
CEILING CEILING(number) Rounds a number to the
nearest integer of equal or
greater value.
Example:
CEILING(3.1415) = 4
1. Number Functions
www.edureka.co
Function Syntax Description
COS COS(number) Returns the cosine of an
angle. Specify the angle in
radians.
Example:
COS(PI( ) /4) = 0.707106
1. Number Functions
www.edureka.co
Function Syntax Description
COT COT(number) Returns the cotangent of
an angle. Specify the angle
in radians.
Example:
COT(PI( ) /4) = 1
1. Number Functions
www.edureka.co
Function Syntax Description
DEGREES DEGREES(number) Converts a given number
in radians to degrees.
Example:
DEGREES(PI( )/4) = 45.0
1. Number Functions
www.edureka.co
Function Syntax Description
DIV DIV(integer1, integer2) Returns the integer part of
a quotient, where integer1
is divided by integer2.
Example:
DIV(11,2) = 5
1. Number Functions
www.edureka.co
Function Syntax Description
EXP EXP(number) Returns e raised to the
power of the given
number.
Examples:
EXP(-[Growth Rate]*[Time])
1. Number Functions
www.edureka.co
Function Syntax Description
FLOOR FLOOR(number) Rounds a number to the
nearest integer of equal or
lesser value.
Example:
FLOOR(3.1415) = 3
1. Number Functions
www.edureka.co
Function Syntax Description
HEXBIN HEXBINX/Y(number,
number)
These are binning and
plotting functions for
hexagonal bins.
Example:
HEXBINX([Longitude],
[Latitude])
1. Number Functions
www.edureka.co
Function Syntax Description
LN LN(number) Returns the natural
logarithm of a number.
Returns Null if number is
less than or equal to 0.
1. Number Functions
www.edureka.co
Function Syntax Description
LOG LOG(number, [base]) Returns the logarithm of a
number for the given base.
If the base value is
omitted, base 10 is used.
1. Number Functions
www.edureka.co
Function Syntax Description
MAX MAX(number, number) Returns the maximum of
the two arguments of the
same type.
Example:
MAX(Sales,Profit)
1. Number Functions
www.edureka.co
Function Syntax Description
MIN MIN(number, number) Returns the minimum of
the two arguments of the
same type.
Example:
MAX(Sales,Profit)
1. Number Functions
www.edureka.co
Function Syntax Description
PI PI( ) Returns the numeric
constant pi: 3.14159.
1. Number Functions
www.edureka.co
Function Syntax Description
POWER POWER(number, power) Raises the number to the
specified power.
Example:
POWER(5,2) = 5^2 =
25
1. Number Functions
www.edureka.co
Function Syntax Description
RADIANS RADIANS(number) Converts the given number
from degrees to radians.
Example:
RADIANS(180) = 3.14159
1. Number Functions
www.edureka.co
Function Syntax Description
ROUND ROUND(number, [decimals]) Rounds numbers to a
specified number of digits.
Example:
ROUND(Sales)
1. Number Functions
www.edureka.co
Function Syntax Description
SIGN SIGN(number) Returns the sign of a
number.
Example: If the average of
the profit is negative, then
SIGN(AVG(Profit)) = -1
1. Number Functions
www.edureka.co
Function Syntax Description
SIN Sin(number) Returns the sine of an
angle. Specify the angle in
radians.
Example:
SIN(PI( ) /4) = 0.707106
1. Number Functions
www.edureka.co
Function Syntax Description
SQRT SQRT(number) Returns the square root of
a number.
Example:
SQRT(25) = 5
1. Number Functions
www.edureka.co
Function Syntax Description
SQUARE SQUARE(number) Returns the square of a
number.
Example:
SQUARE(5) = 25
1. Number Functions
www.edureka.co
Function Syntax Description
TAN TAN(number) Returns the tangent of an
angle. Specify the angle in
radians.
Example:
TAN(PI ( )/4) = 1.0
1. Number Functions
www.edureka.co
Function Syntax Description
ZN ZN(expression) Returns the expression if it
is not null.
Example:
ZN([Profit]) = [Profit]
1. Number Functions
String
Functions
2.
www.edureka.co
www.edureka.co
2. String Functions
String functions allow you to manipulate string data.You can do things
like pull all the last names from all your customers into a new field
using this function. www.edureka.co
ASCII
CHAR
CONTAINS
ENDSWITH
FIND
FINDNTH
LEFT
LEN
LOWER
LTRIM
MAX
MID
MIN
REPLACE
RIGHT
RTRIM
SPACE
SPLIT
STARTSWITH
TRIM
UPPER
2. String Functions
www.edureka.co
Function Syntax Description
ASCII ASCII(string) Returns the ASCII code for
the first character
of string.
Example:
ASCII('A') = 65
2. String Functions
www.edureka.co
Function Syntax Description
CHAR CHAR(number) Returns the character
encoded by the ASCII
code number.
Example:
CHAR(65) = 'A'
2. String Functions
www.edureka.co
Function Syntax Description
CONTAINS CONTAINS(string, substring) Returns true if given string
contains specified substring.
Example:
CONTAINS(“Calculation”,
“alcu”) = true
2. String Functions
www.edureka.co
Function Syntax Description
ENDSWITH ENDSWITH(string, substring) Returns true if given string
ends with given substring.
Example:
ENDSWITH(“Tableau”,
“leau”) = true
2. String Functions
www.edureka.co
Function Syntax Description
FIND FIND(string, substring,
[start])
Returns the index position
of substring in string.
Example:
FIND("Calculation", "a", 3)
= 7
2. String Functions
www.edureka.co
Function Syntax Description
FINDNTH FINDNTH(string, substring,
occurrence)
Returns the position of Nth
occurrence of substring.
Example:
FIND("Calculation", "a", 2)
= 7
2. String Functions
www.edureka.co
Function Syntax Description
LEFT LEFT(string, number) Returns the left-most
substring in the string.
Example:
LEFT("Matador", 4) =
"Mata"
2. String Functions
www.edureka.co
Function Syntax Description
LEN LEN(string) Returns the length of the
string.
Example:
LEN("Matador") = 7
2. String Functions
www.edureka.co
Function Syntax Description
LOWER LOWER(string) Returns string, with all
characters lowercase.
Example:
LOWER("ProductVersion")
= "productversion"
2. String Functions
www.edureka.co
Function Syntax Description
LTRIM LTRIM(string) Returns the string with any
leading spaces removed.
Example:
LTRIM(" Matador ") =
"Matador "
2. String Functions
www.edureka.co
Function Syntax Description
MAX MAX(a, b) Returns the maximum of a
and b.
Example: MAX
("Apple","Banana") =
"Banana"
2. String Functions
www.edureka.co
Function Syntax Description
MID (MID(string, start, [length]) Returns the string starting
at index position start.
Example: MID("Calculation",
2, 5) ="alcul"
2. String Functions
www.edureka.co
Function Syntax Description
MIN MIN(a, b) Returns the minimum of a
and b.
Example: MIN
("Apple","Banana") =
“Apple"
2. String Functions
www.edureka.co
Function Syntax Description
RIGHT RIGHT(string, number) Returns the right-most
substring in a string.
Example:
RIGHT("Calculation", 4) =
"tion"
2. String Functions
www.edureka.co
Function Syntax Description
RTRIM RTRIM(string) Returns string with any
trailing spaces removed.
Example:
RTRIM(" Calculation ") =
" Calculation"
2. String Functions
www.edureka.co
Function Syntax Description
SPACE SPACE(number) Returns a string that has
the specified number of
repeated spaces.
Example:
SPACE(1) = " "
2. String Functions
www.edureka.co
Function Syntax Description
SPLIT SPLIT(string, delimiter,
token number)
Returns a substring from
input, using a delimiter to
divide it.
Examples:
SPLIT (‘a-b-c-d’,‘-‘, 2) =
‘b’
2. String Functions
www.edureka.co
Function Syntax Description
TRIM TRIM(string) Returns the string with no
leading and trailing spaces.
Example:
TRIM(" Calculation ") =
"Calculation"
2. String Functions
www.edureka.co
Function Syntax Description
TRIM TRIM(string) Returns the string with no
leading and trailing spaces.
Example:
TRIM(" Calculation ") =
"Calculation"
2. String Functions
www.edureka.co
Function Syntax Description
UPPER UPPER(string) Returns string, with all
characters uppercase.
Example:
UPPER("Calculation") =
"CALCULATION"
2. String Functions
Date
Functions
3.
www.edureka.co
www.edureka.co
3. Date Functions
Date functions allow you to manipulate Dates in your data source such
as year, month, date, day and/or time.
www.edureka.co
DATEADD
DATEDIFF
DATENAME
DATEPART
DATETRUNC
DAY
ISDATE
MAKEDATE
MAKEDATETIME
MAKETIME
MAX
MIN
MONTH
NOW
TODAY
YEAR
3. Date Functions
www.edureka.co
Function Syntax Description
DATEADD DATEADD(date_part,
interval, date)
Returns the specified date
with number intervals.
Example: DATEADD('month',
3, #2004-04-15#) =
2004-07-15 12:00:00 AM
3. Date Functions
www.edureka.co
Function Syntax Description
DATEDIFF DATEDIFF(date_part, date1,
date2, [start_of_week])
Returns the difference
between date1 and date2.
Example: DATEDIFF('week',
#2013-09-22#, #2013-
09-24#, 'monday')= 1
3. Date Functions
www.edureka.co
Function Syntax Description
DATENAME DATENAME(date_part, date,
[start_of_week])
Returns date-part of the
date as a string.
Example: DATENAME('year',
#2004-04-15#) =
"2004"
3. Date Functions
www.edureka.co
Function Syntax Description
DATEPART DATEPART(date_part, date,
[start_of_week])
Returns date_part of date
as an integer.
Example: DATEPART('year',
#2004-04-15#) = 2004
3. Date Functions
www.edureka.co
Function Syntax Description
DATETRUNC DATETRUNC(date_part, date,
[start_of_week])
Truncates the specified date
specified by the date_part.
Example:
DATETRUNC('quarter',
#2004-08-15#) = 2004-
07-01 12:00:00 AM
3. Date Functions
www.edureka.co
Function Syntax Description
DAY DAY(date) Returns the day of the
given date as an integer.
Example:
DAY(#2004-04-12#) = 12
3. Date Functions
www.edureka.co
Function Syntax Description
ISDATE ISDATE(string) Returns true if a given
string is a valid date.
Example:
ISDATE("April 15, 2004") =
true
3. Date Functions
www.edureka.co
Function Syntax Description
MAKEDATE MAKEDATE(year, month, day) Returns a date value
constructed from the
specified year, month, and
date.
Example: MAKEDATE(2004, 4,
15) = #April 15, 2004#
3. Date Functions
www.edureka.co
Function Syntax Description
MAKEDATETIME MAKEDATETIME(date, time) Returns a combination of
date and time.
Example:
MAKEDATETIME([Date],
[Time]) = #1/1/2001
6:00:00 AM#
3. Date Functions
www.edureka.co
Function Syntax Description
MAKETIME MAKETIME(hour, minute,
second)
Returns a date value
constructed from hour,
minute, and second.
Example: MAKETIME(14, 52,
40) = #14:52:40#
3. Date Functions
www.edureka.co
Function Syntax Description
MAX MAX(a, b) Returns the maximum of a
and b.
Example: MAX(#2004-01-
01# ,#2004-03-01#) =
2004-03-01 12:00:00 AM
2. String Functions
www.edureka.co
Function Syntax Description
MIN MIN(a, b) Returns the minimum of a
and b.
Example: MIN(#2004-01-
01# ,#2004-03-01#) =
2004-01-01 12:00:00 AM
2. String Functions
www.edureka.co
Function Syntax Description
MONTH MONTH(date) Returns the month of the
given date as an integer.
Example:
MONTH(#2004-04-15#) =
4
3. Date Functions
www.edureka.co
Function Syntax Description
NOW NOW( ) Returns the current date
and time.
Example:
NOW( ) = 2004-04-15
1:08:21 PM
3. Date Functions
www.edureka.co
Function Syntax Description
TODAY TODAY( ) Returns the current date.
Example:
TODAY( ) = 2004-04-15
3. Date Functions
www.edureka.co
Function Syntax Description
YEAR YEAR (date) Returns the year of the
given date as an integer.
Example:
YEAR(#2004-04-15#) =
2004
3. Date Functions
Type
Conversion
Functions
4.
www.edureka.co
www.edureka.co
4. Type Conversion Functions
Type conversion functions allow you to convert fields from one data
type to another, e.g, you can convert numbers to strings, to prevent or
enable aggregation by Tableau. www.edureka.co
DATE
DATETIME
DATEPARSE
FLOAT
INT
STR
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
DATE DATE(expression) Returns a date given a
number, string or date.
Example: DATE("April 15,
2004") = #April 15,
2004#
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
DATETIME DATETIME(expression) Returns a datetime given a
number, string, or date.
Example: DATETIME(“April
15, 2005 07:59:00”) =
April 15, 2005 07:59:00
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
DATEPARSE DATEPARSE(format, string) Returns a datetime in the
specified format.
Example: DATEPARSE
("dd.MMMM.yyyy",
"15.April.2004") = #April
15, 2004#
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
FLOAT FLOAT(expression) Casts its argument as a
floating point number.
Example:
FLOAT(3) = 3.000
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
INT INT(expression) Casts its argument as an
integer.
Example: INT(8.0/3.0) = 2
4. Type Conversion Functions
www.edureka.co
Function Syntax Description
STR STR(expression) Casts its argument as a
string.
Example: STR([Age])
4. Type Conversion Functions
Aggregate
Functions
5.
www.edureka.co
www.edureka.co
5. Aggregate Functions
Aggregate functions allow you to summarize or change the granularity
of your data.
www.edureka.co
5. Aggregate Functions
ATTR
AVG
COLLECT
CORR
COUNT
COUNTD
LEFT
LEN
LOWER
LTRIM
COVAR
COVARP
MAX
MEDIAN
MIN
PERCENTILE
STDEV
STDEVP
SUM
VAR
VARP
www.edureka.co
Function Syntax Description
ATTR ATTR(expression) Returns the value of the
expression if it has a single
value for all rows.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
AVG AVG(expression) Returns the average of all
the values in the expression.
Example: AVG(Sales)
5. Aggregate Functions
www.edureka.co
Function Syntax Description
CORR CORR(expression 1,
expression2)
Returns the Pearson
correlation coefficient of
two expressions.
Example: {CORR(Sales,
Profit)}
5. Aggregate Functions
www.edureka.co
Function Syntax Description
COUNT COUNT(expression) Returns the number of
items in a group.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
COUNTD COUNTD(expression) Returns the number of
distinct items in a group.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
COVAR COVAR(expression 1,
expression2)
Returns the sample
covariance of two
expressions.
Example: COVAR([Sales],
[Profit])
5. Aggregate Functions
www.edureka.co
Function Syntax Description
COVARP COVARP(expression 1,
expression2)
Returns the population
covariance of two
expressions.
Example: COVAR([Sales],
[Profit])
5. Aggregate Functions
www.edureka.co
Function Syntax Description
COVARP COVARP(expression 1,
expression2)
Returns the population
covariance of two
expressions.
Example: COVAR([Sales],
[Profit])
5. Aggregate Functions
www.edureka.co
Function Syntax Description
MAX MAX(expression) Returns the maximum
expression across all
records.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
MEDIAN MEDIAN(expression) Returns the median
expression across all
records.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
MIN MIN(expression) Returns the minimum
expression across all
records.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
PERCENTILE PERCENTILE(expression,
number)
Returns the percentile value
from the given expression
corresponding to the
specified number.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
STDEV STDEV(expression) Returns the statistical
standard deviation of all
values in the given
expression based on a
sample of the population.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
STDEVP STDEVP(expression) Returns the statistical
standard deviation of all
values in the given
expression based on a
biased population.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
SUM SUM(expression) Returns the sum of all
values in the expression.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
VAR VAR(expression) Returns the statistical
variance of all values in the
given expression based on a
sample of the population.
5. Aggregate Functions
www.edureka.co
Function Syntax Description
VARP VARP(expression) Returns the statistical
variance of all values in the
given expression based on
the entire population.
5. Aggregate Functions
User
Functions
6.
www.edureka.co
www.edureka.co
6. User Functions
User functions are used to create user filters/row-level security filters
that affect visualizations published to Tableau Server or Tableau Online,
so that only particular people can see your visualization. www.edureka.co
6. User Functions
FULLNAME
ISFULLNAME
ISMEMBEROF
ISUSERNAME
USERDOMAIN
USERNAME
www.edureka.co
Function Syntax Description
FULLNAME FULLNAME( ) Returns the full name for
the current user.
Example:
[Manager]=FULLNAME( )
6. User Functions
www.edureka.co
Function Syntax Description
ISFULLNAME ISFULLNAME( ) Returns true if the current
user's full name matches
the specified full name.
Example:
ISFULLNAME(“Shubham
Sinha” )
6. User Functions
www.edureka.co
Function Syntax Description
ISMEMBEROF ISMEMBEROF(string) Returns true if the person
currently using Tableau is a
member of a group that
matches the given string.
Example:
ISMEMBEROF(“Sales”)
6. User Functions
www.edureka.co
Function Syntax Description
ISMEMBEROF ISMEMBEROF(string) Returns true if the person
currently using Tableau is a
member of a group that
matches the given string.
Example:
ISMEMBEROF(“Sales”)
6. User Functions
www.edureka.co
Function Syntax Description
ISUSERNAME ISUSERNAME(string) Returns true if the current
user's username matches
the specified username
Example:
ISUSERNAME(“Sinha”)
6. User Functions
www.edureka.co
Function Syntax Description
USERDOMAIN USERDOMAIN() Returns the domain for the
current user when signed
into Tableau Server.
Example:
[Domain]=USERDOMAIN()
6. User Functions
www.edureka.co
Function Syntax Description
USERNAME USERNAME() Returns the username of
the current user.
Example:
[Manager]=USERNAME()
6. User Functions
Logical
Functions
7.
www.edureka.co
www.edureka.co
7. Logical Functions
Logical calculations allow you to determine if a certain condition is true
or false (Boolean logic)
www.edureka.co
AND
CASE
ELSE
ELSEIF
END
IF
IFNULL
IIF
ISDATE
ISNULL
MAX
MIN
NOT
OR
THEN
WHEN
ZN
7. Logical Functions
www.edureka.co
Function Syntax Description
AND IF <expr1> AND
<expr2> THEN <then>
END
Performs a logical ‘and’ on
two expressions.
Example: IF (ATTR([Market])
= "Africa" AND
SUM([Sales]) > [Emerging
Threshold] )THEN "Well
Performing"
7. Logical Functions
www.edureka.co
Function Syntax Description
CASE CASE <expression>
WHEN <value1> THEN
<return1>
WHEN <value2> THEN
<return2> ...
ELSE <default return>
END
Performs logical tests and
returns appropriate values.
Example: CASE [Region]
WHEN 'West' THEN 1
WHEN 'East' THEN 2 ELSE
3 END
7. Logical Functions
www.edureka.co
Function Syntax Description
ELSE IF <expr> THEN <then>
ELSE <else> END
Tests a series of expressions
returning the <then>
value for a true <expr>.
Example: If [Profit] > 0
THEN 'Profitable' ELSE
'Loss' END
7. Logical Functions
www.edureka.co
Function Syntax Description
ELSEIF IF <expr> THEN <then>
[ELSEIF <expr2> THEN
<then2>...] [ELSE
<else>] END
Tests an expression for the
<then> value for true
<expr>.
Example: IF [Profit] > 0
THEN 'Profitable' ELSEIF
[Profit] = 0 THEN
'Breakeven' ELSE 'Loss’ END
7. Logical Functions
www.edureka.co
Function Syntax Description
END IF <expr> THEN <then>
[ELSEIF <expr2> THEN
<then2>...] [ELSE
<else>] END
Marks the end of an
expression.
Example:
IF [Profit] > 0 THEN
'Profitable' ELSEIF [Profit]
= 0 THEN 'Breakeven'
ELSE 'Loss' END
7. Logical Functions
www.edureka.co
Function Syntax Description
IF IF <expr> THEN <then>
[ELSEIF <expr2> THEN
<then2>...] [ELSE
<else>] END
Tests an expression
returning <then> value
for a true <expr>.
Example:
IF [Profit] > 0 THEN
'Profitable' ELSE 'Loss’ END
7. Logical Functions
www.edureka.co
Function Syntax Description
IFNULL IFNULL(expr1, expr2) Returns <expr1> if it is
not null, otherwise returns
<expr2>.
Example:
IFNULL([Profit], 0)
7. Logical Functions
www.edureka.co
Function Syntax Description
IIF IIF(test, then, else,
[unknown])
Checks condition; returns
first value if TRUE, second
if FALSE, and third if
unknown.
Example: IIF([Profit] > 0,
'Profit', 'Loss')
7. Logical Functions
www.edureka.co
Function Syntax Description
ISDATE ISDATE(string) Returns true if a given
string is a valid date.
Example:
ISDATE("2004-04-15") =
True
7. Logical Functions
www.edureka.co
Function Syntax Description
ISNULL ISNULL(expression) Returns true if expression is
Null.
Example:
ISNULL([Profit])
7. Logical Functions
www.edureka.co
Function Syntax Description
ISNULL ISNULL(expression) Returns true if expression is
Null.
Example:
ISNULL([Profit])
7. Logical Functions
www.edureka.co
Function Syntax Description
MAX MAX(expression) Returns the maximum of
the all records.
Example:
MAX(Profit)
7. Logical Functions
www.edureka.co
Function Syntax Description
MIN MIN(expression) Returns the minimum of
the all records.
Example:
MAX(Profit)
7. Logical Functions
www.edureka.co
Function Syntax Description
NOT IF NOT <expr> THEN
<then> END
Performs logical negation on
an expression.
Example: IF NOT [Profit] >
0 THEN "Unprofitable" END
7. Logical Functions
www.edureka.co
Function Syntax Description
OR IF <expr1> OR <expr2>
THEN <then> END
Performs a logical ‘or’ on
two expressions.
Example: IF [Profit] < 0
OR [Profit] = 0 THEN
"Needs Improvement" END
7. Logical Functions
www.edureka.co
Function Syntax Description
THEN IF <expre> THEN
<then> [ELSEIF ,expr2>
THEN <then2>...] [ELSE
<else>] END
Tests an expression
returning <then> for true
<expr>.
Example: IF [Profit] > 0
THEN 'Profitable’ END
7. Logical Functions
www.edureka.co
Function Syntax Description
WHEN CASE <expr> WHEN
<Value1> THEN
<return1> ... [ELSE
<else>] END
Finds the first <value> =
<expr> and returns value.
Example: CASE [ ] WHEN 'I'
THEN 1 ELSE 2 END
7. Logical Functions
www.edureka.co
Function Syntax Description
ZN ZN(expression) Returns <expression> if it
is not null, otherwise
returns zero.
Example:
ZN([Profit])
7. Logical Functions
THANK YOU

More Related Content

What's hot

Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau -  Data, Graphs, Filters, Dashboards and Advanced featuresLearning Tableau -  Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced featuresVenkata Reddy Konasani
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
 
Tableau Visual analytics complete deck 2
Tableau Visual analytics complete deck 2Tableau Visual analytics complete deck 2
Tableau Visual analytics complete deck 2Arun K
 
Data Visualization1.pptx
Data Visualization1.pptxData Visualization1.pptx
Data Visualization1.pptxqwtadhsaber
 
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...Edureka!
 
Tableau Software - Business Analytics and Data Visualization
Tableau Software - Business Analytics and Data VisualizationTableau Software - Business Analytics and Data Visualization
Tableau Software - Business Analytics and Data Visualizationlesterathayde
 
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Srinath Reddy
 
Five Things I Wish I Knew the First Day I Used Tableau
Five Things I Wish I Knew the First Day I Used TableauFive Things I Wish I Knew the First Day I Used Tableau
Five Things I Wish I Knew the First Day I Used TableauRyan Sleeper
 
Tableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesTableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesBurn & Born
 
Tableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedTableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedSpotle.ai
 
Top 65 SQL Interview Questions and Answers | Edureka
Top 65 SQL Interview Questions and Answers | EdurekaTop 65 SQL Interview Questions and Answers | Edureka
Top 65 SQL Interview Questions and Answers | EdurekaEdureka!
 
Tableau free tutorial
Tableau free tutorialTableau free tutorial
Tableau free tutorialtekslate1
 
Data Virtualization: An Introduction
Data Virtualization: An IntroductionData Virtualization: An Introduction
Data Virtualization: An IntroductionDenodo
 

What's hot (20)

Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau -  Data, Graphs, Filters, Dashboards and Advanced featuresLearning Tableau -  Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Tableau Visual analytics complete deck 2
Tableau Visual analytics complete deck 2Tableau Visual analytics complete deck 2
Tableau Visual analytics complete deck 2
 
Tableau Server Basics
Tableau Server BasicsTableau Server Basics
Tableau Server Basics
 
Tableau file types
Tableau   file typesTableau   file types
Tableau file types
 
Tableau Prep.pptx
Tableau Prep.pptxTableau Prep.pptx
Tableau Prep.pptx
 
Data Visualization1.pptx
Data Visualization1.pptxData Visualization1.pptx
Data Visualization1.pptx
 
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tab...
 
Tableau Software - Business Analytics and Data Visualization
Tableau Software - Business Analytics and Data VisualizationTableau Software - Business Analytics and Data Visualization
Tableau Software - Business Analytics and Data Visualization
 
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
 
Tableau Presentation
Tableau PresentationTableau Presentation
Tableau Presentation
 
Five Things I Wish I Knew the First Day I Used Tableau
Five Things I Wish I Knew the First Day I Used TableauFive Things I Wish I Knew the First Day I Used Tableau
Five Things I Wish I Knew the First Day I Used Tableau
 
Tableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesTableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, Disadvantages
 
Tableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedTableau And Data Visualization - Get Started
Tableau And Data Visualization - Get Started
 
Top 65 SQL Interview Questions and Answers | Edureka
Top 65 SQL Interview Questions and Answers | EdurekaTop 65 SQL Interview Questions and Answers | Edureka
Top 65 SQL Interview Questions and Answers | Edureka
 
Tableau
TableauTableau
Tableau
 
Tableau free tutorial
Tableau free tutorialTableau free tutorial
Tableau free tutorial
 
Data Virtualization: An Introduction
Data Virtualization: An IntroductionData Virtualization: An Introduction
Data Virtualization: An Introduction
 
Data Visualization with Tableau - by Knowledgebee Trainings
Data Visualization with Tableau - by Knowledgebee TrainingsData Visualization with Tableau - by Knowledgebee Trainings
Data Visualization with Tableau - by Knowledgebee Trainings
 
My tableau
My tableauMy tableau
My tableau
 

Similar to What are Tableau Functions? Edureka

Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsMegha V
 
The Ring programming language version 1.8 book - Part 29 of 202
The Ring programming language version 1.8 book - Part 29 of 202The Ring programming language version 1.8 book - Part 29 of 202
The Ring programming language version 1.8 book - Part 29 of 202Mahmoud Samir Fayed
 
The Ring programming language version 1.5.4 book - Part 23 of 185
The Ring programming language version 1.5.4 book - Part 23 of 185The Ring programming language version 1.5.4 book - Part 23 of 185
The Ring programming language version 1.5.4 book - Part 23 of 185Mahmoud Samir Fayed
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answerRaajTech
 
The Ring programming language version 1.9 book - Part 31 of 210
The Ring programming language version 1.9 book - Part 31 of 210The Ring programming language version 1.9 book - Part 31 of 210
The Ring programming language version 1.9 book - Part 31 of 210Mahmoud Samir Fayed
 
Python High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptPython High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptAnishaJ7
 
Numeric functions in SQL | Oracle
Numeric functions in SQL | OracleNumeric functions in SQL | Oracle
Numeric functions in SQL | OracleVimal Raj
 
Diploma ii cfpc u-4 function, storage class and array and strings
Diploma ii  cfpc u-4 function, storage class and array and stringsDiploma ii  cfpc u-4 function, storage class and array and strings
Diploma ii cfpc u-4 function, storage class and array and stringsRai University
 
The Ring programming language version 1.5.2 book - Part 22 of 181
The Ring programming language version 1.5.2 book - Part 22 of 181The Ring programming language version 1.5.2 book - Part 22 of 181
The Ring programming language version 1.5.2 book - Part 22 of 181Mahmoud Samir Fayed
 
iRODS Rule Language Cheat Sheet
iRODS Rule Language Cheat SheetiRODS Rule Language Cheat Sheet
iRODS Rule Language Cheat SheetSamuel Lampa
 
Hive function-cheat-sheet
Hive function-cheat-sheetHive function-cheat-sheet
Hive function-cheat-sheetDr. Volkan OBAN
 
Bsc cs i pic u-4 function, storage class and array and strings
Bsc cs i pic u-4 function, storage class and array and stringsBsc cs i pic u-4 function, storage class and array and strings
Bsc cs i pic u-4 function, storage class and array and stringsRai University
 
Btech i pic u-4 function, storage class and array and strings
Btech i pic u-4 function, storage class and array and stringsBtech i pic u-4 function, storage class and array and strings
Btech i pic u-4 function, storage class and array and stringsRai University
 
Functions torage class and array and strings-
Functions torage class and array and strings-Functions torage class and array and strings-
Functions torage class and array and strings-aneebkmct
 
Oracle sql functions
Oracle sql functionsOracle sql functions
Oracle sql functionsVivek Singh
 
function, storage class and array and strings
 function, storage class and array and strings function, storage class and array and strings
function, storage class and array and stringsRai University
 

Similar to What are Tableau Functions? Edureka (20)

Mysql1
Mysql1Mysql1
Mysql1
 
Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operations
 
The Ring programming language version 1.8 book - Part 29 of 202
The Ring programming language version 1.8 book - Part 29 of 202The Ring programming language version 1.8 book - Part 29 of 202
The Ring programming language version 1.8 book - Part 29 of 202
 
The Ring programming language version 1.5.4 book - Part 23 of 185
The Ring programming language version 1.5.4 book - Part 23 of 185The Ring programming language version 1.5.4 book - Part 23 of 185
The Ring programming language version 1.5.4 book - Part 23 of 185
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
Mysql
MysqlMysql
Mysql
 
Mysql
MysqlMysql
Mysql
 
Mysql
MysqlMysql
Mysql
 
The Ring programming language version 1.9 book - Part 31 of 210
The Ring programming language version 1.9 book - Part 31 of 210The Ring programming language version 1.9 book - Part 31 of 210
The Ring programming language version 1.9 book - Part 31 of 210
 
Python High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptPython High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.ppt
 
Numeric functions in SQL | Oracle
Numeric functions in SQL | OracleNumeric functions in SQL | Oracle
Numeric functions in SQL | Oracle
 
Diploma ii cfpc u-4 function, storage class and array and strings
Diploma ii  cfpc u-4 function, storage class and array and stringsDiploma ii  cfpc u-4 function, storage class and array and strings
Diploma ii cfpc u-4 function, storage class and array and strings
 
The Ring programming language version 1.5.2 book - Part 22 of 181
The Ring programming language version 1.5.2 book - Part 22 of 181The Ring programming language version 1.5.2 book - Part 22 of 181
The Ring programming language version 1.5.2 book - Part 22 of 181
 
iRODS Rule Language Cheat Sheet
iRODS Rule Language Cheat SheetiRODS Rule Language Cheat Sheet
iRODS Rule Language Cheat Sheet
 
Hive function-cheat-sheet
Hive function-cheat-sheetHive function-cheat-sheet
Hive function-cheat-sheet
 
Bsc cs i pic u-4 function, storage class and array and strings
Bsc cs i pic u-4 function, storage class and array and stringsBsc cs i pic u-4 function, storage class and array and strings
Bsc cs i pic u-4 function, storage class and array and strings
 
Btech i pic u-4 function, storage class and array and strings
Btech i pic u-4 function, storage class and array and stringsBtech i pic u-4 function, storage class and array and strings
Btech i pic u-4 function, storage class and array and strings
 
Functions torage class and array and strings-
Functions torage class and array and strings-Functions torage class and array and strings-
Functions torage class and array and strings-
 
Oracle sql functions
Oracle sql functionsOracle sql functions
Oracle sql functions
 
function, storage class and array and strings
 function, storage class and array and strings function, storage class and array and strings
function, storage class and array and strings
 

More from Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
 
ITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | EdurekaITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | EdurekaEdureka!
 

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 
ITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | EdurekaITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
 

Recently uploaded

Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 

Recently uploaded (20)

Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 

What are Tableau Functions? Edureka