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?
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?
To create a calculation that returns a customer name followed by a comma, a space, and then the customer’s age, you need to use the correct syntax for concatenation and converting the age to a string. The correct option is to concatenate the customer name with a comma and a space, and then convert the age to a string using STR. Therefore, the calculation should be [Customer Name] + ', ' + STR([Age]).
D is correct but with some correction others are totally wrong Tried ([Customer Name]) +"," + STR([Age])
D. [Customer Name) +"," + STR([Age])
I think the answer is D but typo ] -> ) the right answer should be : [Customer Name] +"," + STR([Age])
ABC are obviously wrong. D has potential.. lol [Customer Name] +", " + STR([Age])