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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
freemainia
Helper I
Helper I

COUNTIF measure

Hi,

 

I would like to:

1. Count the number of IDs that have a "Yes" in any of the corresponding Train cells (answer = 2)

2. Count the number of IDs that don't have a "Yes", but do have a "Partial", in any of the corresponding Train cells (answer = 2)

3. Count the number of IDs that have a "No" in all of the corresponding Train cells (answer = 1)

 

Project 1Project 2Project 3What I want
IDTrain
1Yes
2No
3No
4Partial
5No

 

IDTrain
1 No
2 No
3 Partial
4 No
5Partial

 

IDTrain
1 No
2 No
3 No
4 Yes
5Partial

 

IDTrain
1 Yes
2 No
3 Partial
4 Yes
5Partial

 

 

I would like this to be a measure (rather than a column) as sometimes I may filter to one project, two projects, or all three projects.

 

Cheers.

 

 

 

 

1 ACCEPTED SOLUTION

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


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

View solution in original post

6 REPLIES 6
Ashish_Mathur
Super User
Super User

Hi,

Do you have each Project's data in a seperat table?


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

Currently, they are in separate tables.

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


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

Many thanks @Ashish_Mathur.

Seems to be working now, with the slight adjustment of changing:

 
Measure 3 = COUNTROWS(FILTER(VALUES(Data[ID]),[No count]=3))


to

Measure 3 = COUNTROWS(FILTER(VALUES(Data[ID]),[No count trains]=DISTINCTCOUNT(Data[Project])))
 
Having the value of "3" didn't work when less than 3 projects were selected. I think (hope) the addition of DISTINCTCOUNT(Data[Project]) controls for the number of projects selected.

You are welcome.


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

@freemainia , For the last columns in the power query a new column

Make sure the two header are merged in date

 

let 

_a = {[Project 1 Train], [Project 2 Train],[Project 3 Train]}

_b = if List.Contains(_a, "Yes") then "Yes" else if List.Contains(_a, "Partial") "Partial" else "No"

in

_b

 

Or New column in dax

 

var _a = {[Project 1 Train], [Project 2 Train],[Project 3 Train]}

_b = Switch(true(),
Containsstring(_a, "Yes") , "Yes",
Containsstring(_a, "Partial") , "Partial" ,
"No")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.