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
vineet2504
Frequent Visitor

I want to count and reflect the number of reason codes against each row

Below is the table and count of Reason code is the result I am trying to get in power BI. In first coloumn same Document number is there and against each document either there is reason code present or not present . I want to count and reflect the number of reason codes against each row . 

 

For eg. 123 document has total of 3 reason codes. so 3 count will reflect against each 123 row.

my excel formula to claculate count of reason code is : 

Capture.PNG

 

 

 

 

 

 

 

 

 

 

DocsReason CodeReason Code (Y/N)Count of Reason code
123x13
123003
123x13
123x13
231001
231x11
231001
231001

 

I tried below DAX formula but it is giving me the total of all reason codes. But I want sum of Reason code come against each document =

call = CALCULATE(COUNTAX(Sheet1,Sheet1[Order Number]),FILTER(Sheet1,Sheet1[reasoncode1]>0))

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @vineet2504 

 

Try following

 

=
CALCULATE ( SUM ( Sheet1[reasoncode] ), ALLEXCEPT ( sheet1, sheet1[Docs] ) )

Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

You could try this as well:

 

[Count of Reason Codes] =
var __oneDocVisibleAndDirectltyFiltered = HASONEFILTER( T[Docs] )
var __reasonCodeCount =
	CALCULATE(
		SUM ( T[Reason Code (T/N)] ),
		VALUES( T[Docs] ),
		ALL( T )
	)
return
	if(
		__oneDocVisibleAndDirectlyFiltered,
		__reasonCodeCount
	)

Best

Darek

Zubair_Muhammad
Community Champion
Community Champion

Hi @vineet2504 

 

Try following

 

=
CALCULATE ( SUM ( Sheet1[reasoncode] ), ALLEXCEPT ( sheet1, sheet1[Docs] ) )

Regards
Zubair

Please try my custom visuals

This is working. Thanks dude.

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.

Top Solution Authors