I'm trying to write a power query to where I can join all the values of a column from another query (table) into a single line.
Example:
Table from Query 1
Outcome: I want it to return a text like:
[2019-09],[2019-10],[2019-11],[2019-12],[2020-01],[2020-02]
I'm trying to put this in my other query, within a JSON code, where the text combine function is (Value).
{""DataModelName"":""[AllStreams].[Month Year]"",
""Caption"":"""&Date.ToText( DateTime.Date( Date.AddDays(DateTimeZone.UtcNow(),0) ) , "yyyy-MM")&""",
""Value"":""["
& Text.Combine(Table.SelectColumns(FilterList_PV)[Date]), "" ) & "]"",
""Operand"":0,
""UnionGroup"":""""}
Let me know if this is possible! Thanks!