Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculate today, tomorrows and day after tomorrows

HI all,

I have a scenario, where i need to find

Today quantity and tomorrows Quantity and Day after tomorrows quantity

Attached the application.

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi Vamsi,

Try this expressions

Expression for Today = Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today()))"}>}Qty)

Expression for Tomorrow= Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today() + 1))"}>}Qty)

Expression for day after Tomorrow= Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today() + 2))"}>}Qty)


Regards,

Jagan.

View solution in original post

4 Replies
PradeepReddy
Specialist II
Specialist II

can you elaborate your requirement?

settu_periasamy
Master III
Master III

Hi,

Normally, it would be like this..

today :  =sum({<DateField={"$(=Date(Today()))"}>}Qty)

today +1 : =sum({<DateField={"$(=Date(Today()+1))"}>}Qty)

Not applicable
Author

business scenario

I have a item for that i got 100 quantity order to manufacture but today i produce only 30 items and postpone 50 items tomorrow and 20 items day after tomorrow.

ID|  Today     | Qty| (WIP(work in Progress)) | Backlogs | Tomorrow |Qty | Day after Tomorrow | QTY | Total QTY

x1|  21/12/15  |30  | 30                                 | 70           | 22/12/15   |50   |  23/12/15                | 20    | 100

jagan
Luminary Alumni
Luminary Alumni

Hi Vamsi,

Try this expressions

Expression for Today = Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today()))"}>}Qty)

Expression for Tomorrow= Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today() + 1))"}>}Qty)

Expression for day after Tomorrow= Sum({<MonthField=, YearField=, QuarterField=, DateField={"$(=Date(Today() + 2))"}>}Qty)


Regards,

Jagan.