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.
Hello,
i need to multiple the value in a column to a specific value based in a text condition
Ex : IF text = ABC Table1(column1) * 8 else column2
I need it for 6 different texts, like ABC and ABD and ADE... in the same IF to have the values in the same column
I tried to use some IF DAX and Cond. Column but i none worked.
Anyone can give me some help?
Solved! Go to Solution.
Do you mean something like this?
NewColumn = IF(Table[Column1] in {"ABC", "CDE", "EFG", "GHI"}, Table[Column2] * 8, Table[Column3])
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
It worked perfectly for me @mahoneypat , i also did some additional IF to have differente multiplication for each text condition!
Thank you so much for your help!
Do you mean something like this?
NewColumn = IF(Table[Column1] in {"ABC", "CDE", "EFG", "GHI"}, Table[Column2] * 8, Table[Column3])
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |