Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Below expression is for calculating previous month.
=date(AddMonths(date#(max([FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
I want to calculate previous month based on date filter. It should not affected by any other selection like product name and rep id.
Bu using above normal exp. previous month calculation is changing as per selection like product name and rep id
sorry
=date(AddMonths(date#(max( {1< [FSPM Month Number] = $::[FSPM Month Number]>} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
try using this expression:
=date(AddMonths(date#(max( {1} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
Can be simplified to this
=Date(AddMonths(Max({1} [FSPM Month Number]), -1),'YYYYMM')
I want to date selection will change the calculation but not rep id or product name field.
if I choose 05/05/2017 then prev moth should be 201704.Date filter should work but not other filter effect the result.
I want to date selection will change the calculation but not rep id or product name field.
if I choose 05/05/2017 then prev moth should be 201704.Date filter should work but not other filter effect the result.
I want to date selection will change the calculation but not rep id or product name field.
if I choose 05/05/2017 then prev moth should be 201704.Date filter should work but not other filter effect the result.
May be this
=Date(AddMonths(Max({1<[FSPM Month Number] = p([FSPM Month Number])>} [FSPM Month Number]), -1),'YYYYMM')
try using this expression:
=date(AddMonths(date#(max( {1< [FSPM Month Number] = ::$ [FSPM Month Number]>} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
Its not working.
it displaying 245203.Also date selection not affecting the result
Would you be able to share a sample to look at this?