Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
infosense_devel
Creator II
Creator II

Calculate "BudgetTarget" Column in table.

Hello All,

         i have scenario in which i have to show "Date", "Budget MTD" and "Target Budget" (final accumulated number of Budget MTD).

Please take a look at below image.

target_1.png

Formula for for "MTD Budget" :-

=Rangesum(above(total sum({<PATH_SELECT =,[Common_Day (#)]=,

                               REC_TYPE = {'BudgetRec'}>}DAILY_BUDGET*XRATE_CONST*RATE)

                ,0,rowno(total))

         )

Thanks in advance.

1 Solution

Accepted Solutions
sunny_talwar

Try this:

Sum(TOTAL {<PATH_SELECT =, [Common_Day (#)]=, REC_TYPE = {'BudgetRec'}>} DAILY_BUDGET * XRATE_CONST * RATE)

View solution in original post

2 Replies
sunny_talwar

Try this:

Sum(TOTAL {<PATH_SELECT =, [Common_Day (#)]=, REC_TYPE = {'BudgetRec'}>} DAILY_BUDGET * XRATE_CONST * RATE)

infosense_devel
Creator II
Creator II
Author

Thanks a lot.. it is working exactly what i needed ..