Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I have set of data as in bellow. I would need to add in power query editor another colum which would be calculated according to condition. If ExpenseBasis_ID has "Percentage" in it then it will return the same value as we have in Amount1 column to column Amount2, however if there isn't "Percentage" in column ExpenseBasis_ID it would be using formula (Amount1 *12). Can you please help me with this? Thank you!
| ExpenseBasis_ID | Amount1 | Amount 2 |
| Percentage | 2 | |
| Amount 2 | 5 | |
| Amount 1 | 6 | |
| Percentage | 3 | |
| Amount 4 | 2 | |
| Percentage | 9 |
Solved! Go to Solution.
@matka123499
Create a conditional column in Power Query and use the below formula
If the post helps please give a thumbs up
If it solves your issue, please accept it as the solution to help the other members find it more quickly.
Tharun
Hi @matka123499 ,
I would only add to @tharunkumarRTK solution, in the formula box of the custom column in Power Query:
if Text.Contains( [ExpenseBasis_ID], "Percentage" ) then [Amount1] else [Amount1] * 12
This suggestion comes because you state that "If ExpenseBasis_ID has "Percentage" " so I would imagine that the ExpenseBasis column may sometimes have some other characters when its Percentage.
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
@matka123499
Create a conditional column in Power Query and use the below formula
If the post helps please give a thumbs up
If it solves your issue, please accept it as the solution to help the other members find it more quickly.
Tharun
Thank you!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |