This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I'm quite new to DAX and would appricate all your help.
I have a column "number of floors" and what I would like to do is create another column, Where if that column has a value init then multiply that number by 10 and give the output.
e.g.
Number of floors is 10, therefore the output of the new column would be 10 * 10 = 100
if the number of Floors is 0 then the output would be 0.
I can do this by using 2 customs columns but wanted to see if I could reduce it and use just one column.
Thank you in advance for your help.
Solved! Go to Solution.
Hi @Fali324 ,
Sorry, it's not clear what you mean by "value init", do you mean whether the data contains "init"?
Here are the steps you can follow:
1. Create calculated column.
Column =
IF(
CONTAINSSTRING(
'Table'[Text],"init")=TRUE(),
[Value] * 10 ,0)
2. Result:
If the results don't meet your expectations, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Fali324 ,
Sorry, it's not clear what you mean by "value init", do you mean whether the data contains "init"?
Here are the steps you can follow:
1. Create calculated column.
Column =
IF(
CONTAINSSTRING(
'Table'[Text],"init")=TRUE(),
[Value] * 10 ,0)
2. Result:
If the results don't meet your expectations, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Do you need it to be done in DAX?
If so. First you need to understand the difference between new column and new measure.
Do you have data already loaded in the data model?
You need data to do that operation.
If you have data, you can do your new colum / measure with normal algebra. Maybe you will need treatment of blanks.
If you dont need the calculation to be done in DAX, you can also have your multiplication done in Power Query before data are loaded.
Hope it helps
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 39 | |
| 28 | |
| 28 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 27 | |
| 25 |