Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have to concatenate mutiple columns with different data types in DIRECT QUERY mode.
Infact I have to concatenate 5 columns.I tried with just two columns, still it does not work.
Here st_cd is text and tax_yr is number.
[st_cd]&[tax_yr]>>NOT supported in DQ
[st_cd]+[tax_yr]>>NOT supported in DQ
COMBINEVALUES(" ",[st_cd],[tax_yr])>> Not working
Any thought please.
Hi @saktisahoo2006,
In DirectQuery mode, combining columns is not supported.
As a workaround, you can achieve by creating a calculated column with DAX function.
Please refer: https://docs.microsoft.com/en-us/dax/concatenate-function-dax
Best Regards,
Link
Use this thread which was a solution hopefully for your query !
Proud to be a Super User!
Hi Vijay,
May I know which thread I have to follow for the solution?
Proud to be a Super User!
I have tried those suggestions , but no luck.