Forum Discussion
Conditional Column based on Multiple Columns
- Anonymous4 years ago
Hi indigodiv ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:
Requirement Met? = VAR _count = CALCULATE ( COUNT ( 'Table'[Attribute 1] ), 'Table'[Attribute 1] = "Yes" ) + CALCULATE ( COUNT ( 'Table'[Attribute 2] ), 'Table'[Attribute 2] = "Yes" ) + CALCULATE ( COUNT ( 'Table'[Attribute 3] ), 'Table'[Attribute 3] = "Yes" ) + CALCULATE ( COUNT ( 'Table'[Attribute 4] ), 'Table'[Attribute 4] = "Yes" ) + CALCULATE ( COUNT ( 'Table'[Attribute 5] ), 'Table'[Attribute 5] = "Yes" ) RETURN IF ( _count >= 3, "Yes", "No" )If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi indigodiv ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:
Requirement Met? =
VAR _count =
CALCULATE ( COUNT ( 'Table'[Attribute 1] ), 'Table'[Attribute 1] = "Yes" )
+ CALCULATE ( COUNT ( 'Table'[Attribute 2] ), 'Table'[Attribute 2] = "Yes" )
+ CALCULATE ( COUNT ( 'Table'[Attribute 3] ), 'Table'[Attribute 3] = "Yes" )
+ CALCULATE ( COUNT ( 'Table'[Attribute 4] ), 'Table'[Attribute 4] = "Yes" )
+ CALCULATE ( COUNT ( 'Table'[Attribute 5] ), 'Table'[Attribute 5] = "Yes" )
RETURN
IF ( _count >= 3, "Yes", "No" )
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Thank you!!