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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
HenryJS
Post Prodigy
Post Prodigy

Measure: If column has

Hi all,

 

How do I create a column which:

 

If 'Candidate' has 'Candidate Declaration' & 'CIS Verification' THEN Yes

 

 

Candidate.JPG

1 ACCEPTED SOLUTION

@HenryJS , Can you provide sample data

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

5 REPLIES 5
v-alq-msft
Community Support
Community Support

Hi, @HenryJS 

 

Based on your description, I created data to reproduce your scenario.

Table:

c1.png

 

You may create a measure as below.

 

Yes/No = 
var _candidate = SELECTEDVALUE('Table'[Candidate])
return
IF(
    ISFILTERED('Table'[Candidate]),
    IF(
        AND(
            COUNTROWS(
                FILTER(
                    ALLSELECTED('Table'),
                    'Table'[Candidate] = _candidate&&
                    'Table'[Document] = "Candidate Declaration"
                )
            )>0,
            COUNTROWS(
                FILTER(
                    ALLSELECTED('Table'),
                    'Table'[Candidate] = _candidate&&
                    'Table'[Document] = "CIS Verification"
                )
            )>0
        ),
        "Yes",
        "No"
    )
)

 

 

Result:

c2.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HenryJS
Post Prodigy
Post Prodigy

@amitchandak  can you help?

@HenryJS 

Try

column = if(calculate(distinctcount([document]),filter(table, table[candidate]= earlier(Table[table[candidate]]) 
									&& [document] in {"Candidate Declaration" , "CIS Verification"}))=2, "Yes","No")
									
or

column = if(calculate(distinctcount([document]),filter(table, table[candidate]= earlier(Table[table[candidate]]) 
									&& earlier([document]) in {"Candidate Declaration" , "CIS Verification"}))=2, "Yes","No")								
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak 

 

I tried this

 

 

column = if(calculate(distinctcount([document]),filter('query-results', 'query-results'[Candidate Name]= earlier('query-results'[Candidate Name])
                                    && earlier([document]) in {"Candidate Declaration" , "CIS Verification"}))=2, "Yes","No")
 
 
 
But it didn't work it just gave "No" for everything when there should definitely be "Yes"
 
 

@HenryJS , Can you provide sample data

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.