Forum Discussion
Stuznet
7 years agoHelper V
Use measure as Filter
Hi, I’m struggling with a simple DAX. I created a measure to compare month and year between two dates. Measure = CALCULATE(Count[Column1]), FILTER(Table, MONTH([Date1]) = MONTH([Date2]) && YEAR([...
parry2k
7 years agoSuper User
Stuznet would you mind sharing sample data and also if you can mention which records are showing wrong, will help.
Stuznet
7 years agoHelper V
I think I got it.
This is what I did.
First, I create a measure
Measure = COUNT([Product])
Second, I create a calculated column
Comparison = IF(MONTH([Received Date]) = MONTH([Date Submitted]) && YEAR([Received Date]) = YEAR([Date Submitted]),"Matched", "Not Matched")
Thank you for your help :)