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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
HenryJS
Post Prodigy
Post Prodigy

Count Ref IF

Hi all,

 

How do I create a measure which counts 'CompanyHQOriginalSourceRef' IF Type = "Business Development" or "Top 10"?

 

 

 

Comapnies screenshot.PNG

3 ACCEPTED SOLUTIONS
Mariusz
Community Champion
Community Champion

Hi @HenryJS 

 

Try This 

Measure = 
CALCULATE(
    DISTINCTCOUNT( 'Table'[CompanyHQOriginalSourceRef] ),-- or COUNTROWS( 'Table' ),
    'Table'[Type] IN { "Business Development", "Top 10" }
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

View solution in original post

Anonymous
Not applicable

Hi @HenryJS,

I haven't found any ranking fields in your table, can you please explain more about your data structure?

How to Get Your Question Answered Quickly 

In addition, You can try to use the following measure formula if it suitable for your requirement:

Measure =
CALCULATE (
    COUNTA ( Table[CompanyHQOriginalSourceRef] ),
    FILTER (
        ALLSELECTED ( Table ),
        [Type] = "Business Development"
            && [Rank] <= 10
    )
)

Regards,

Xiaoxin Sheng

View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

Try this measure

=CALCULATE(COUNTROWS(Data),Data[Type]="Business Development"||Data[Type]="Top 10")

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Try this measure

=CALCULATE(COUNTROWS(Data),Data[Type]="Business Development"||Data[Type]="Top 10")

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @HenryJS,

I haven't found any ranking fields in your table, can you please explain more about your data structure?

How to Get Your Question Answered Quickly 

In addition, You can try to use the following measure formula if it suitable for your requirement:

Measure =
CALCULATE (
    COUNTA ( Table[CompanyHQOriginalSourceRef] ),
    FILTER (
        ALLSELECTED ( Table ),
        [Type] = "Business Development"
            && [Rank] <= 10
    )
)

Regards,

Xiaoxin Sheng

Mariusz
Community Champion
Community Champion

Hi @HenryJS 

 

Try This 

Measure = 
CALCULATE(
    DISTINCTCOUNT( 'Table'[CompanyHQOriginalSourceRef] ),-- or COUNTROWS( 'Table' ),
    'Table'[Type] IN { "Business Development", "Top 10" }
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

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.

Top Solution Authors
Top Kudoed Authors