Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

I am implementing rolling three month dashboard .

Hello Friends,

I am implementing Rolling 3 months procedure in my dashboard where my fiscal year is from April to March.

my date is [Posting Date] and i want to calculate rolling 3 month Amount .

What condition should i use..

Thanks and Regards.

1 Solution

Accepted Solutions
Not applicable
Author

Hi Try This Set analysis hope it will help

=sum({<PostingDate={'>=$(Vrolling3)<=$(vMaxDate)'},month=,year=>}Amount)

Variables:

Vrolling3 : =Date(MonthStart(vMaxDate,-2),'DD/MM/YYYY')

vMaxDate : =Date(max(PostingDate),'DD/MM/YYYY')

View solution in original post

4 Replies
er_mohit
Master II
Master II

See the attached file

er_mohit
Master II
Master II

You can use Farmula for expression side on the basis of date also used

like this

sum({<PostingDate = {">=$(=MonthStart(Max(PostingDate), -2))<=$(=MonthEnd(Max(PostingDate)))"},Year=,Month=>}Sale)

Not applicable
Author

Hi Try This Set analysis hope it will help

=sum({<PostingDate={'>=$(Vrolling3)<=$(vMaxDate)'},month=,year=>}Amount)

Variables:

Vrolling3 : =Date(MonthStart(vMaxDate,-2),'DD/MM/YYYY')

vMaxDate : =Date(max(PostingDate),'DD/MM/YYYY')

Not applicable
Author

Thanks All For Helping me out...