I have a data set with two dates - Report Month and Actual Month. I am trying to create a pivot that counts the number of items that corresponds with each month as per below example. If I just put Count (Distinct Item) it duplicates counts. The closest I've come is: If(Reported Month = Actual Month, Count (Distinct Item),0) but that obviously only works partially.