Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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 1 | Project 2 | Project 3 | What I want | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
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.
Solved! Go to Solution.
Hi,
You may download my PBI file from here.
Hope this helps.
Hi,
Do you have each Project's data in a seperat table?
Currently, they are in separate tables.
Hi,
You may download my PBI file from here.
Hope this helps.
Many thanks @Ashish_Mathur.
Seems to be working now, with the slight adjustment of changing:
to
You are welcome.
@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")
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
96 | |
90 | |
81 | |
69 |
User | Count |
---|---|
157 | |
125 | |
116 | |
111 | |
95 |