Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
matka123499
Frequent Visitor

Power query formula

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_IDAmount1Amount 2
Percentage2 
Amount 25 
Amount 16 
Percentage3 
Amount 42 
Percentage9 
1 ACCEPTED SOLUTION
tharunkumarRTK
Solution Sage
Solution Sage

@matka123499 

Create a conditional column in Power Query and use the below formula

 

tharunkumarRTK_0-1709717186816.png


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

 

View solution in original post

3 REPLIES 3
goncalogeraldes
Super User
Super User

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

tharunkumarRTK
Solution Sage
Solution Sage

@matka123499 

Create a conditional column in Power Query and use the below formula

 

tharunkumarRTK_0-1709717186816.png


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!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors