Forum Discussion
Condition Help
- 1 year ago
Hello AkashDesai ,
You can create a calculated column to sum the "Piece Count" where the "Tag No" is the same.
TotalPieceCountByTagNo =
CALCULATE(
SUM(TableName[Piece Count]),ALLEXCEPT(TableName, TableName[Tag No]))Next, you can create a measure to count distinct "Tag No" where the total "Piece Count" differs from the "Std Pc Count".
This measure filters the rows where the total piece count for a "Tag No" does not match the "Std Pc Count" and then performs a distinct count of those "Tag No" values
DistinctCountOfTagNo =
CALCULATE(
DISTINCTCOUNT(TableName[Tag No]),
FILTER(
TableName,TableName[TotalPieceCountByTagNo] <> TableName[Std Pc Count]))If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523