Hi,
I'm looking to create some set analysis but it's not working
So what I have is Year, Month and Sales
I'm looking to sum sales where the year is always 2016 and the Month remains the same no matter what selection is made on it. I have -
=Sum({<[Year]={'2016'},{1}[Month]>}[Sales])
But it's stating I have an error
Try this (you don't need {1} next to Month)
=Sum({<[Year] = {'2016'}, [Month]>} [Sales])
Try this (you don't need {1} next to Month)
=Sum({<[Year] = {'2016'}, [Month]>} [Sales])
Easy as that! thanks
try this
=Sum({<[Year] = {'2016'}, [Month]=>} [Sales])