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
Julio-YYC
Helper II
Helper II

Validating Combination between two columns

Hi there, dumb question... I have a table with columns "Class" and "Tag". I'd like to get a measure (or a calculated column) called validation... the validation would be:

if 'Class' = Vessel and 'Tag' = V than result is 1, otherwise 0.

 

JulioYYC_0-1690861974510.png

 

thanks!

1 ACCEPTED SOLUTION
Idrissshatila
Super User
Super User

Hello @Julio-YYC ,

 

use the following as Calculated Column 

Validation = IF('Table'[Class] = "Vessel" && 'Table'[Tag] = "V",1,0)

Idrissshatila_0-1690869433175.png

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Follow me on Linkedin



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Idrissshatila
Super User
Super User

Hello @Julio-YYC ,

 

use the following as Calculated Column 

Validation = IF('Table'[Class] = "Vessel" && 'Table'[Tag] = "V",1,0)

Idrissshatila_0-1690869433175.png

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Follow me on Linkedin



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




@Idrissshatila Solution worked perfectly. Thanks!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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