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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sales value on current date

Hi all.

How i can calculated Sales on current date.

Sum(Sales) - all sales

Thank all

Labels (1)
6 Replies
jpenuliar
Partner - Specialist III
Partner - Specialist III

The answer can be found here:

Set Analysis Wizard Tool

its_anandrjs
Champion III
Champion III

Hi,

By the use of the transaction date that you have in the qlikview you can use SET Analysis

=Sum({<Date={'$(=Today())'}>}  Sales )

Regards

Anand

sunny_talwar
MVP
MVP

=Sum({<Date = {'$(=Max(Date))'}>}Sales) <- This would give you the sales for maximum date in your database if no selection has been made and in case you make a selection on date, it will give you the sales for the max date among your selection.

HTH

Best,

S

Not applicable
Author

ОК. It s good for Fact. but that a want use dimention

count(OpenShop) for current date

sunny_talwar
MVP
MVP

Count({<Date={'$(=Today())'}>} OpenShop) or

Count({<Date = {'$(=Max(Date))'}>} OpenShop)


Use the second expression if you don't have today's date in your database, else the output will be 0.


Best,

S

its_anandrjs
Champion III
Champion III

Can you share any sample file.

Regards

Anand