ExamGecko
Question list
Search
Search

Question 261 - TDS-C01 discussion

Report
Export

You need to create a calculation that returns a customer name followed by a comma, a space, and then the customer's age (for example: John Doe, 32).

What should you include in the calculation?

A.
[Customer Name] + ',' + 'STR[Age]''
Answers
A.
[Customer Name] + ',' + 'STR[Age]''
B.
STR([Customer Name]) + ',' STR(''Age')
Answers
B.
STR([Customer Name]) + ',' STR(''Age')
C.
'Customer Name,' + [Age]
Answers
C.
'Customer Name,' + [Age]
D.
[Customer Name] + ',' + STR([Age])
Answers
D.
[Customer Name] + ',' + STR([Age])
Suggested answer: D

Explanation:

According to theTableau Desktop Specialist Exam Readiness, to create a calculation that returns a customer name followed by a comma, a space, and then the customer's age, you should use the formula [Customer Name] + '','' + STR([Age]). This is because you need to concatenate strings using the + operator, and convert the numeric field [Age] to a string using the STR() function.

asked 23/09/2024
Ronald de Groot
40 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first