Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good Afternoon -
I will appreciate guidance on the set analysis below. The first argument works fine, but the second one is being ignored.
Count({$<[S-Account Mapped]={'Y'}, "=left([S-Date],4)"={'2016'}>}[S-Account Mapped])
Thank You!!
You can also try this
Count({<[S-Account Mapped] = {'Y'}, [S-Date] = {"=Left(Only({1} [S-Date]), 4) = 2016"}>} [S-Account Mapped])
I've never done it that way, you might have better luck with:
Count({$<[S-Account Mapped]={'Y'}, [S-Date]={">=$(=MakeDate(2016,1,1))<=$(=MakeDate(2016,12,31))"}>}[S-Account Mapped])
You can also try this
Count({<[S-Account Mapped] = {'Y'}, [S-Date] = {"=Left(Only({1} [S-Date]), 4) = 2016"}>} [S-Account Mapped])
Many thanks Sunny!
That worked fine.