Forum Discussion
Creating custom column from particular cell text?
- Anonymous2 years ago
Hi Anonymous ,
In Power BI, the text type of data is available to use the Max () function, when your data with only one line of text, Max () function will be directly access to the value, when your data has more than one text, Max () function will be based on the order of the alphabetical sorting of the text to obtain the largest of these values.
Calculated columnÇ
Column 3 = MAX('Table'[Column 2])Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
Test1 =
IFERROR(
VALUE('Table'[Column11]),BLANK())Test2 =
SUM('Table'[Test1])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- Anonymous2 years agoNot applicable
Thank you,
If it is not number just text then still can we have the same logic?
Sum would only work with numbers.