Forum Discussion
mb0307
4 years agoResponsive Resident
Error: convert the value to type List.
Hi Here is a table called FridayTable and this is my code to concatenate a column values into one line text here: {Cube.ApplyParameter, "[!V000004]", {"""" & Text.Combine(FridayTab...
- 4 years ago
Thank you and other for looking into this but I have managed to find alrenative solution that worked.
{Cube.ApplyParameter, "[!V000004]", {{ #"Date1" & "", "" & #"Date2" & "", "" & #"Date3" }}},Date1, Date2 and Date3 are separate queries of text type.
Thanks again.
BA_Pete
4 years agoSuper User
Hi mb0307 ,
Try putting curly braces around your column reference:
Text.Combine( {FridayTable[DateCol]} ,""", """)
Pete