Forum Discussion
Value in PBI has wrong capitalization
- 6 years ago
Take a look at this post:
https://community.powerbi.com/t5/Issues/Data-Modeling-Uppercase-and-Lowercase-issues/idi-p/280362
v-haibl-msft
I can't really speak as to why this is the way it is, but from what I can tell it's the same bug/feature causing your issue.
/ J
Sure.
let
Source = Odbc.DataSource("dsn=iScala22", [HierarchicalNavigation=true]),
iScalaDBS_Database = Source{[Name="iScalaDBS",Kind="Database"]}[Data],
dbo_Schema = iScalaDBS_Database{[Name="dbo",Kind="Schema"]}[Data],
OR01_Table = dbo_Schema{[Name="OR010200",Kind="Table"]}[Data],
#"Removed Other Columns" = Table.SelectColumns(OR01_Table,{"OR01001", "OR01002", "OR01003", "OR01005", "OR01015", "OR01019", "OR01091"}),
#"Filtered Rows" = Table.SelectRows(#"Removed Other Columns", each ([OR01002] = 0 or [OR01002] = 4 or [OR01002] = 1 or [OR01002] = 2))
in
#"Filtered Rows"- tex6286 years ago
Community Champion
Is the capitalization inverted when you look at the record in Power Query as well?
- RandomText6 years ago
Helper II
tex628yeah, it's already like that after adding ODBC connection and that table. Without doing anything else.
Edit:
Here's screenshot of all orders with that remark. It's the oldest one and that's why I had an idea maybe to save data import it reuses because it's kinda the same word only different capitalization.
Edit 2: There's 5th one in pbix file with order number: 0006579805
in SQL it goes with remark "TRAKAI".
- tex6286 years ago
Community Champion
Take a look at this post:
https://community.powerbi.com/t5/Issues/Data-Modeling-Uppercase-and-Lowercase-issues/idi-p/280362
v-haibl-msft
I can't really speak as to why this is the way it is, but from what I can tell it's the same bug/feature causing your issue.
/ J