I would need your support if possible..
Currently within my dataset there is a table "SUM" like below, where columns "Jan" and "Feb" contains both decimal and whole numbers data types.
Is it possible to convert some of the whole number to currency and some other to decimal with 2 decimal places ?
SUM TABLE
title | Jan | Feb |
---|---|---|
New users | 80 | 90 |
users | 200 | 150 |
BV | 74562.62 | 82617.93 |
Charge | 0.063629 | 0.061740 |
______________________________________ |
desired output
title | Jan | Feb |
---|---|---|
New users | 80 | 90 |
users | 200 | 150 |
BV | $745,626 | $826,179 |
Charge | 0.06 | 0.06 |
______________________________________ |
I think that in Power BI a column has only one data type.
Is there any way to achieve the desired output?
Thanks in advance