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

Values on data point through a specfiic range

Good afternoon,

As per below I have a 'classic' chart which display values along the year but given that the huge amount of values, on a daily basis, I'd like to display the VALUES IN CHART but only through a specific period for instance Monthly basis............or weekly basis.........can someone help me please? Also, do you know if it's possible to display the values in chart but with specific border color and fill-in color as per below?

Values on data point through a specific range.jpg

Thanks a lot!

Enjoy your day,

Michaël.

1 Reply
chematos
Specialist II
Specialist II

Hi Michaël,

I think there is a way to do what you need, at least something approximate.

For example, I did the following:

// Table with random data
Random:
LOAD RowNo() as Day,
1000*
rand() * RowNo() * rand()*10 as Amount
AutoGenerate 100;

In the bar chart, you need to use Day field as dimension and the expressions in this example are as follows:

Expression 1: sum(Amount)

Expression 2: if(mod(Day,10)=1, sum(Amount),'')

With these expressions, you should uncheck the Bar checkbox for the Expression 2

So as there are 100 days in my table, you will see 10 values.


Hope this helps.

Regards,

Jose