logo
search
Others

Fix Power BI Text Values Displaying in Uppercase Without Transformations

Maira MehtabMaira Mehtab Sep 20, 2026 868 views

Question details

Text values imported into a Power BI dataset are unexpectedly appearing in uppercase, despite having no text transformation steps explicitly configured.

Product
Power BI
Device & OS
not provided
Scenario
Importing and viewing text data within a Power BI dataset.
Observed behavior
Text fields are automatically converting to uppercase without any user-configured case transformations in Power Query or the data model.
Before you start

Verify your original data source directly (such as the SQL database or Excel file) to ensure the text is not natively stored or formatted in uppercase before being pulled into Power BI.

Solution 1Recommended

Review Power Query Applied Steps

Inspect the Power Query Editor to ensure no hidden case-conversion steps were automatically generated or applied during data import.

1
Open Power Query Editor

In Power BI Desktop, click on 'Transform Data' in the Home ribbon to launch the Power Query Editor.

2
Check Applied Steps

Select the affected query on the left, then review the 'Applied Steps' pane on the right side. Look for any steps named 'Uppercased Text'.

3
Examine Advanced Editor

Click 'Advanced Editor' on the Home tab to view the raw M code. Check for any instances of the Text.Upper function and delete them if they are overriding your text formatting.

Free Microsoft Office alternative

Manage and Analyze Your Datasets Easily with WPS Office

If you are working with data analysis and don't require the complex dimensional modeling of Power BI, WPS Spreadsheet is a lightweight, familiar, and free alternative to Microsoft Excel. It offers seamless migration for your daily data processing and visualization needs.

  1. 1. Download and Install WPS Office: Visit the official WPS website to download and install the free WPS Office suite on your device.
  2. 2. Open WPS Spreadsheet: Launch WPS Office and click on 'Spreadsheet' to start a new blank workbook or open an existing data file.
  3. 3. Import and Analyze Data: Navigate to the Data tab to import your raw datasets, apply filters, and generate pivot tables for instant and straightforward analysis.
100% compatibility with Microsoft Excel formats (.xlsx, .csv)Lightweight architecture for fast data processing without system lagRich built-in formulas, pivot tables, and visualization chartsCompletely free alternative to expensive Microsoft Office subscriptions
microsoft office alternative - wps office

Frequently Asked Questions

Is Power Query case-sensitive?

Yes, the M language used in Power Query is strictly case-sensitive. Values like 'Apple' and 'apple' are treated as two distinct entities during transformations, filtering, and merging operations.

How do I force text to lowercase in Power BI?

In the Power Query Editor, right-click the target column header, select 'Transform', and click 'Lowercase'. This will apply the Text.Lower function to standardize the column data.

Why does DAX ignore text case while Power Query enforces it?

The Power BI data model (which uses DAX) is designed to be case-insensitive by default to optimize query performance and data compression. Conversely, Power Query (M) acts as an ETL data transformation language that rigorously enforces case sensitivity for precise data cleaning.