Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
91 | |
50 | |
44 | |
40 | |
35 |