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
rezaaditia
Helper III
Helper III

count distinct with criteria in measure

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

1 ACCEPTED 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

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
Mariusz
Community Champion
Community Champion

Hi @rezaaditia 

Can you provide a sample of data you working with and the end goal of what you wont to achive.

 

Best Regards,
Mariusz

Please feel free to connect with me.
Mariusz Repczynski



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

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

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.