Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi
Can anyone help me with the following;
Measure =
IF (
AND (
CONTAINS (
'table1',
'table1'[FID_Custom], "TRUE"
),
CALCULATE (
CONTAINS (
'table1',
'table1'[Status], "Validated"
)
)
),
1,
0
)
=> I want to get all rows with 'table1'[FID_Custom]"TRUE" and 'table1'[Status] "Valiated" => currently I get only the "TRUE" once.
It is a IF condition with multiple selections.
Many thanks
Solved! Go to Solution.
Hi @tomkribi
Try
Measure =
CALCULATE (
COUNT ( 'table1'[FID_Custom] ),
'table1'[FID_Custom] = TRUE (),
'table1'[Status] = "Validated"
)
if FID_Custom is of Boolean type. Or:
Measure =
CALCULATE (
COUNT ( 'table1'[FID_Custom] ),
'table1'[FID_Custom] = "TRUE",
'table1'[Status] = "Validated"
)
if FID_Custom is of text type.
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Great, many thanks, this is the solution for me
Measure = CALCULATE ( COUNT ( 'table1'[FID_Custom] ), 'table1'[FID_Custom] = "TRUE", 'table1'[Status] = "Validated" )
Hi @tomkribi
Try
Measure =
CALCULATE (
COUNT ( 'table1'[FID_Custom] ),
'table1'[FID_Custom] = TRUE (),
'table1'[Status] = "Validated"
)
if FID_Custom is of Boolean type. Or:
Measure =
CALCULATE (
COUNT ( 'table1'[FID_Custom] ),
'table1'[FID_Custom] = "TRUE",
'table1'[Status] = "Validated"
)
if FID_Custom is of text type.
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Great, many thanks, this is the solution for me
Measure = CALCULATE ( COUNT ( 'table1'[FID_Custom] ), 'table1'[FID_Custom] = "TRUE", 'table1'[Status] = "Validated" )
Hi @tomkribi ,
There is a simpler way of writing your IF statement: (Create a caluclated column)
calcColumn = IF('table1'[FID_Custom] = "TRUE" && 'table1'[Status] = "Valiated", 1, 0)
If this doesn't help post some sample data and desired output.
Thanks,
Pragati
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
17 | |
14 | |
10 | |
9 | |
6 |