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 All -
please help, i still don't understand using measure to calculate count with multiple criteria. below is my sample query
COUNTD( IF DATE([po_release_supplier2]) = DATE([Validate Date]) AND DATE([sap_insert_date]) = DATE([Validate Date]) AND [Validate Source] = "outflow" THEN [Purchasing Document] END )
thanks in advance
Solved! Go to Solution.
Hi @rezaaditia ,
Based on your logic, you could try the measure below.
Measure = IF ( MAX ( [po_release_supplier2] ) = MAX ( [validate_date] ) && MAX ( [sap_insert_date] ) = MAX ( [validate_date] ) && MAX ( [validate_source] ) = "backlog", COUNT ( [PO] ), "" )
If you still need help, you'd better create the sample data which could reproduce your scenario and paste here as table format so that we could have a test on it.
Best Regards,
Cherry
Hi @rezaaditia
Can you provide a sample of data you working with and the end goal of what you wont to achive.
Hi @Mariusz
I am really sorry, i can't share my data, and i don't know also how to replicate the data. Basically i have 1 reports with multiple colums with table name : po report
i want to count (distinct) number of backlog based on filter like below
[po_release_supplier2]=[validate_date] and
[sap_insert_date] = [validate_date] and
[validate_source] ="backlog"
in excel, it will be like
iF(And([po_release_supplier2]=[validate_date], [sap_insert_date] = [validate_date], [validate_source] ="backlog"), count(PO), "")
i want to use the measure, once the formula work, so i just use card visualization to shows the number
thanks
Hi @rezaaditia ,
Based on your logic, you could try the measure below.
Measure = IF ( MAX ( [po_release_supplier2] ) = MAX ( [validate_date] ) && MAX ( [sap_insert_date] ) = MAX ( [validate_date] ) && MAX ( [validate_source] ) = "backlog", COUNT ( [PO] ), "" )
If you still need help, you'd better create the sample data which could reproduce your scenario and paste here as table format so that we could have a test on it.
Best Regards,
Cherry
Hi @rezaaditia
Sorry but its very difficult to imagine what you whant to achive by looking only at excel formula.
Can you not create a sample with the same structure as the data you are working on?
All I need is few lines so I can see the logic.
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 |
---|---|
113 | |
91 | |
84 | |
76 | |
65 |
User | Count |
---|---|
146 | |
109 | |
109 | |
102 | |
96 |