Forum Discussion
help with DAX (replace calculated columns with Measures)
- Anonymous5 years ago
Hi nexami
I think you want columns V-AG which show the computed raw data update automaticlly with the updating of your real data (A-U). I think custom column(M query in Power Query Editor), calculated column or measure can achieve your goal. All of them are created based on your real data, so all of them will update with the refresh of your data.
You can create them by your requirement.
How to and Differences:
1. Custom columns can be created in Power Query Editor by M query. This will be stored as underlying data and will use memory. For reference: Add a custom column in Power BI Desktop
2. Calculated column can be created in report view by dax. It will use your memory. You can find your calculated column in your data view. But you couldn't find your calculated column in Power Query Editor.
3. Measure can be created in report view by dax. Measure is aggregate value, so you couldn't find it in data view. It will use your CPU. To transform a calculate column, you need to use aggregation dax function like sum, max.
EX:
Calculate column is like
Calculated column = calculate(Table[A],Filter(Table,...))To transform it to Measure, you need to use sum to number type and max/min to text and other types.
Measure = calculate(Sum/Max(Table[A]),Filter(Table,...))For reference: Calculated Columns vs Measures
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi nexami
I think you want columns V-AG which show the computed raw data update automaticlly with the updating of your real data (A-U). I think custom column(M query in Power Query Editor), calculated column or measure can achieve your goal. All of them are created based on your real data, so all of them will update with the refresh of your data.
You can create them by your requirement.
How to and Differences:
1. Custom columns can be created in Power Query Editor by M query. This will be stored as underlying data and will use memory. For reference: Add a custom column in Power BI Desktop
2. Calculated column can be created in report view by dax. It will use your memory. You can find your calculated column in your data view. But you couldn't find your calculated column in Power Query Editor.
3. Measure can be created in report view by dax. Measure is aggregate value, so you couldn't find it in data view. It will use your CPU. To transform a calculate column, you need to use aggregation dax function like sum, max.
EX:
Calculate column is like
Calculated column = calculate(Table[A],Filter(Table,...))
To transform it to Measure, you need to use sum to number type and max/min to text and other types.
Measure = calculate(Sum/Max(Table[A]),Filter(Table,...))
For reference: Calculated Columns vs Measures
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.