Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi,
I have a List values:
I want to use exactly same format with "" shown above in this query:
{Cube.ApplyParameter, "[!V000004]", {{ #"ListName"}}},
If I provide the ListName then i get this error:
Expression.Error: We cannot convert a value of type List to type Text.
Details:
Value=[List]
Type=[Type]
How can i convert List values to Text and use in my query please?
keeping the List format with "" like this:
"20200925", "20201030", "20201127", "20201225", "20210129", "20210226", "20210326", "20210430", "20210528", "20210625", "20210730", "20210827", "20210924", "20211029"
Thanks in advance.
Hi,
I was dealing with same issue and solution was to keep the list in form of list instead of string and to remove one pair of {}.
Working code:
{Cube.ApplyParameter, "[!V000004]", {List1}}Together with list (square bracket are there because of weird naming convenction we have here):
I'm guessing what you want is this:
{Cube.ApplyParameter, "[!V000004]", {Text.Split(#"ListName"{0}, ",")}},
@mb0307 How about this?
let
Source = { " ""20200925"", ""20201030""" },
Text = Lines.ToText(Source)
in
Text
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 6 | |
| 5 |