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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
AnneMi
Frequent Visitor

Countif with multiple criteria

Hi, 

I want to make a measure to count how many uniqe "Numbers" That has a value from the colon: "Special" 

 

AnneMi_0-1670923360788.png

AnneMi_1-1670923396834.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,

 

 Quick solution would be to Pivot the Special and Number columns using a count not blank? Not sure if you have a specific layout required post count or not.

JamesRobson_0-1670924703150.png

 

 

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Number", Int64.Type}, {"Special", Int64.Type}}),
#"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(#"Changed Type", {{"Number", type text}}, "en-GB"), List.Distinct(Table.TransformColumnTypes(#"Changed Type", {{"Number", type text}}, "en-GB")[Number]), "Number", "Special", List.NonNullCount)
in
#"Pivoted Column"

 

Thanks,

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi,

 

 Quick solution would be to Pivot the Special and Number columns using a count not blank? Not sure if you have a specific layout required post count or not.

JamesRobson_0-1670924703150.png

 

 

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Number", Int64.Type}, {"Special", Int64.Type}}),
#"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(#"Changed Type", {{"Number", type text}}, "en-GB"), List.Distinct(Table.TransformColumnTypes(#"Changed Type", {{"Number", type text}}, "en-GB")[Number]), "Number", "Special", List.NonNullCount)
in
#"Pivoted Column"

 

Thanks,

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors