March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello!
Here is a mock-up dataset:
Column A | Column B |
Japan | 2 |
Korea | 4 |
Japan | 6 |
Korea | 1 |
Korea | 9 |
What I need to do is to create a new column that will multiply the values of Column B by 2 if the country in Column A is Korea, while retaining the original value of Column B for Japan.
I really appreciate any help! Thank you so much 🙂
Solved! Go to Solution.
Hi, @lwklwk98
Please check the below for creating a new column.
New Column CC =
SWITCH (
TRUE (),
'Table'[Column A ] = "Korea", 'Table'[Column B ] * 2,
'Table'[Column B ]
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi, @lwklwk98
Please check the below for creating a new column.
New Column CC =
SWITCH (
TRUE (),
'Table'[Column A ] = "Korea", 'Table'[Column B ] * 2,
'Table'[Column B ]
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |