Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone,
I am learning PowerBI and having some trouble with making a calculated column available for grouping in Power Query. I have a calculated column: ProductPriceCategory that I created using DAX in Power BI. However, when I go to the Power Query Editor (Transform Data), I can't see this column there. Here’s how I created the column:
ProductPriceCategory =
IF(
[ProductPriceZscore] >= 2.5,
"Top category",
IF(
[ProductPriceZscore] >= 1 && [ProductPriceZscore] < 2.5,
"Premium category",
IF(
[ProductPriceZscore] >= 0 && [ProductPriceZscore] < 1,
"Standard category",
"Value category"
)
)
)
Solved! Go to Solution.
"when I go to the Power Query Editor (Transform Data), I can't see this column there" - this is correct behaviour.
You don't see DAX calculated columns in Power Query.
Add a custom column in power query instead
Power Query can't see DAX calculated columns. You can create that column in Power Query using "if-then-else" syntax.
https://gorilla.bi/power-query/if-function-in-power-query/
Proud to be a Super User!
Power Query can't see DAX calculated columns. You can create that column in Power Query using "if-then-else" syntax.
https://gorilla.bi/power-query/if-function-in-power-query/
Proud to be a Super User!
Seems that I used the wrong window within PowerBi, many thanks!
"when I go to the Power Query Editor (Transform Data), I can't see this column there" - this is correct behaviour.
You don't see DAX calculated columns in Power Query.
Add a custom column in power query instead
Thank you very much for your response.
Am I unable to see the DAX calculated columns in power Query, because they are only performed after they are loaded?
From now on I will create a custom column and group it that way instead.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |