Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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 November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!