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! Learn more
I have a column with information that I would like to add, but these numbers have letters and I am not able to convert. Does anyone have a solution please?
Following data, (B) indicating billions and (M) indicating millions.
1,06B
998,87M
1,21B
Tks.
Solved! Go to Solution.
@EvandoGaspar you can create this calculated column:
Column = LEFT('Table'[Column1], LEN('Table'[Column1])-1) * if(RIGHT('Table'[Column1],1)="B",1000000000, if(RIGHT('Table'[Column1],1)="M",1000000))
Then you could sum these as numbers.
@EvandoGaspar you can create this calculated column:
Column = LEFT('Table'[Column1], LEN('Table'[Column1])-1) * if(RIGHT('Table'[Column1],1)="B",1000000000, if(RIGHT('Table'[Column1],1)="M",1000000))
Then you could sum these as numbers.
Very good! thank you so much!
@EvandoGaspar my pleasure. don't forget to mark it as a solution for community visabilty
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 | |
| 5 | |
| 5 | |
| 4 | |
| 3 | 
| User | Count | 
|---|---|
| 24 | |
| 11 | |
| 10 | |
| 9 | |
| 8 |