顧客名、カンマ、スペース、顧客の年齢 (例: John Doe、32 歳) を返す計算を作成する必要があります。 計算には何を含めるべきですか?
正解:D
According to the Tableau 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.