Forum Discussion
Anonymous
5 years agoNot applicable
Power Query Changing Text Characters to Symbols
Hi, I'm facing a very weird problem. I have a PBI report where my source is from an Excel file. In the file, there is a column (Huawei cell Name) that has some values like "DHK_X0034_1", "DHK_X2267_...
- 5 years ago
As advised, the best course of action here was to post this in the Issues forum where it was seen by the MS team on the Powery product, where it was fixed by the May 2021 release. marking this as the solution to this thread can be seen as solved.
smpa01
5 years agoCommunity Champion
Anonymous while MS is trying to fix that some temp fix for you
temp fix # 2 - connect the excel on a ODBC connector
let
Source = Odbc.Query(
"dbq=C:\Users\sp\Documents\Debug\Input_Data.xlsx;defaultdir=C:\Users\sp\Documents\Debug;driverid=1046;maxbuffersize=2048;pagetimeout=5;dsn=Excel Files",
"SELECT `Data$`.`Site Code`, `Data$`.`MRBTS ID`, `Data$`.`Site Name`, `Data$`.`BCF Name`, `Data$`.`Segment Name (SegmentName)`, `Data$`.`Huawei cell Name`#(lf)FROM `C:\Users\sp\Documents\Debug\Input_Data.xlsx`.`Data$` `Data$`"
)
in
Source
Using the above query and the same datasource as you, the query returns following