DAX Text Functions MCQS
Q. Which DAX function joins two text values into one string?
Solution:
CONCATENATE() combines two text values into a single string.
Q. What does UPPER() do in DAX?
Solution:
UPPER() converts a text string to all uppercase letters.
Q. What does FORMAT() primarily do?
Solution:
 FORMAT() turns a raw number or date value into a display-ready text string based on a format pattern.
Q. Besides CONCATENATE(), what else can join two text columns in DAX?
Solution:
The & operator joins text values the same way CONCATENATE() does, and is often used for more than two values at once.
Q. What would FORMAT([Total Sales], "$#,##0") produce for a value of 12500?
Solution:
The pattern formats the number as a dollar amount with a thousands separator and no decimals.
Q. Why might a report builder prefer FORMAT() over simply setting number formatting in the visual's format pane?
Solution:
FORMAT() is useful specifically when you need to combine a formatted number with surrounding text in a single string, something the visual’s built-in number formatting can’t do.
Q. LEFT() is returning unexpected characters from a text column. What's a common cause?
Solution:
LEFT() counts every character including spaces, so untrimmed source data can produce unexpected results.
Get Question Bank
Strengthen Your Practice with our comprehensive question bank.