COUNT function using multiple expressions

Daveconva

New Member
Joined
May 22, 2016
Messages
10
Im trying to create a calculated measure where I want to produce a figure that is the COUNT of Column 1 where it = "Jan-16" and Column 2 = BLANK? Thank you.
 
Thank you so much for your help with this DAX problem. So the second option you gave me work fine "trial count 2:=CALCULATE(COUNTA('ws pds'[Month Tagged]),'ws pds'[Month Tagged] = "January 2016")". As we now have three working lines of code are we able to place them all together to tie back into my original request and see if we can get that working? Really Really appreciate your help :)

 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try this as a final result:

Code:
[COLOR=#333333]trial count 2:=CALCULATE(COUNTA('ws pds'[Month Tagged]),FILTER(ALL( [/COLOR][COLOR=#333333]'ws ads' ),[/COLOR][COLOR=#333333]'ws pds'[Month Tagged] = "January 2016" && [/COLOR][COLOR=#333333]ISBLANK( 'ws pds'[CC Month Replaced])[/COLOR][COLOR=#333333]) )[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,225,635
Messages
6,186,125
Members
453,340
Latest member
Stu61

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top