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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Oros
Post Partisan
Post Partisan

True/False, if statement

Hello,

 

I need to add a column (FINAL PRICE) that is based on another column (TRUE/FALSE).  If the product discounted=FALSE, then multiply REGULAR PRICE by one (1), otherwise put DISCOUNTED PRICE. Thanks.

Oros_1-1654032998041.png

 

 

1 ACCEPTED SOLUTION
dhruvinushah
Responsive Resident
Responsive Resident

Hi @Oros , 
Assuming your table's datatype for the Discounted Column is formatted like this: 

dhruvinushah_0-1654036580784.png


Try this to create your FINAL_PRICE column:

Final Price = IF( 'True False'[Discounted]=TRUE(), 'True False'[Discounted Price], 'True False'[Regular])

 

Hope this helps, tag me (@) if you need more help on it. Feel free to mark the answer as a solution if it helped you.
Thanks!









View solution in original post

3 REPLIES 3
dhruvinushah
Responsive Resident
Responsive Resident

Hi @Oros , 
Assuming your table's datatype for the Discounted Column is formatted like this: 

dhruvinushah_0-1654036580784.png


Try this to create your FINAL_PRICE column:

Final Price = IF( 'True False'[Discounted]=TRUE(), 'True False'[Discounted Price], 'True False'[Regular])

 

Hope this helps, tag me (@) if you need more help on it. Feel free to mark the answer as a solution if it helped you.
Thanks!









Thanks @dhruvinushah 

HotChilli
Super User
Super User

what have you tried so far?

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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