The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have a data table on several columns, I want to count the number of "yes" rows for a single M1 and M4 (another column) for the same identifier because there are several M1 and M4 which are repeated for the same identifier.
Solved! Go to Solution.
Hi @nabilassellalou ,
Assuming you want to count the rows in Moment Mains that contain M1 or M4 and which value in Confirmite Mains is Oui (as you did not provide a sample result), try this formula. Replace M1 with M4 if computing for M4.
M1 =
CALCULATE (
COUNTROWS ( Feuil1 ),
FILTER (
ALLEXCEPT ( Feuil1, Feuil1[ID] ),
CONTAINSSTRING ( Feuil1[Moment mains], "M1" )
&& Feuil1[Conformité mains] = "Oui"
)
)
I cant post table
I post images of columns of the used table. I would like to count the number of yes for a single M1 or M4 for same identifier
This is just a sample formula based on the information provided.
CALCULATE (
COUNTROWS ( 'table' ),
'table'[M1 column] = "yes",
'table'[M4 column] = "yes"
)
If this doesn't address your question, please provide a workable sample data (not an image) and your expected result from that sample data.
Not images please. You can copy a table and paste it here.
have email to send table?
You can post a link to a cloud storage like One/Google Drive or DropBox.
link is not public
Its public now
Hi @nabilassellalou ,
Assuming you want to count the rows in Moment Mains that contain M1 or M4 and which value in Confirmite Mains is Oui (as you did not provide a sample result), try this formula. Replace M1 with M4 if computing for M4.
M1 =
CALCULATE (
COUNTROWS ( Feuil1 ),
FILTER (
ALLEXCEPT ( Feuil1, Feuil1[ID] ),
CONTAINSSTRING ( Feuil1[Moment mains], "M1" )
&& Feuil1[Conformité mains] = "Oui"
)
)
Thank you, it's done.
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
47 | |
44 |