| title | SetToStr (MDX) |
|---|---|
| description | SetToStr (MDX) |
| ms.date | 02/17/2022 |
| ms.service | sql |
| ms.subservice | analysis-services |
| ms.topic | reference |
| ms.custom | mdx |
Returns a Multidimensional Expressions (MDX)-formatted string of that corresponds to a specified set.
SetToStr(Set_Expression)
Set_Expression
A valid Multidimensional Expressions (MDX) expression that returns a set.
This function is used to transfer a string-representation of a set to an external function for parsing. The string that is returned is enclosed in braces {}, with each item in the set separated by a comma.
The following example returns a string containing all of the members of the Geography.Country attribute hierarchy.
WITH MEMBER Measures.x AS SetToStr (Geography.Geography.Children)
SELECT Measures.x ON 0
FROM [Adventure Works]