
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Convert this expression into set expression
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.
By using above normal exp. previous month calculation is changing as per selection like product name and rep id
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.
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you tried the following:
=date(AddMonths(date#(max( {< [rep id] = , [product name] = >} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
Of course you would have to change [rep id] and [product name] for your field names.
Caio

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't see any date field in the attached application?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you tried the following:
=date(AddMonths(date#(max( {< [rep id] = , [product name] = >} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
Of course you would have to change [rep id] and [product name] for your field names.
Caio

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This one also working
=date(AddMonths(date#(max( {1< [FSPM Month Number] = $::[FSPM Month Number]>} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=date(AddMonths(date#(max( {1< [FSPM Month Number] = $::[FSPM Month Number]>} [FSPM Month Number]),'YYYYMM'),-1),'YYYYMM')
