Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I have values in my column like : $2B ,$22M, $15B and some are 'unknown'.
How we can convert these values into digits .
for example $2m --> 2000000.
regards
Solved! Go to Solution.
Hi @Ali123
I know it might be much more complex but based on this sample data please use https://www.dropbox.com/t/HzAd6VMSMQVVBBcC
Salary New =
VAR Salary = Salaries[Salary]
VAR Length = LEN ( Salary )
VAR Number = MID ( Salary, 2, Length - 2 )
RETURN
SWITCH (
TRUE ( ),
CONTAINSSTRING ( Salary, "M" ), 1000000 * Number,
CONTAINSSTRING ( Salary, "B" ), 1000000000 * Number
)
Hi @Ali123
I know it might be much more complex but based on this sample data please use https://www.dropbox.com/t/HzAd6VMSMQVVBBcC
Salary New =
VAR Salary = Salaries[Salary]
VAR Length = LEN ( Salary )
VAR Number = MID ( Salary, 2, Length - 2 )
RETURN
SWITCH (
TRUE ( ),
CONTAINSSTRING ( Salary, "M" ), 1000000 * Number,
CONTAINSSTRING ( Salary, "B" ), 1000000000 * Number
)
| Name | Salary |
| Abubakar | $22M |
| Akbar | $1B |
| Asgar | Unknown |
| Arif | $2M |
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 |
|---|---|
| 78 | |
| 46 | |
| 37 | |
| 31 | |
| 26 |