Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
SamuelHaag
Contributor III
Contributor III

Missing data when not using extra filter

Hi guys,

I don't get the behaviour of my barchart and the data behind it. I want to see all the sales per month for the current year.  In addition the sales are divided by the workdays ("AT je Monat") per month. 

This is the Set Analysis that I'm using for that with some other filters:

 

(sum( {1<
[Businessyear] = {$(=year(today(2)))}

>}

sales
))

/

[Workdays per month]

 

 

This is how the chart looks like without any other filters:

11-11-_2019_10-50-22.png

Only two months are shown which is not correct

This is how the bar chart looks with a filter for the business year (here 2019). I don't know why it works here with the filter...

11-11-_2019_10-50-58.png

 

 

Do you have any idea?

 

 

Thanks!

 

 

 

 

 

 

Labels (3)
1 Solution

Accepted Solutions
martinpohl
Partner - Master
Partner - Master

Hi,

I think the problem is 

/ Workdays per month

which are many values in one month over the years

so change to

max({{1<[Businessyear] = {$(=year(today(2)))}>}  [Workdays per month])

that only one number of business days per month are calulated

Regards

View solution in original post

2 Replies
martinpohl
Partner - Master
Partner - Master

Hi,

I think the problem is 

/ Workdays per month

which are many values in one month over the years

so change to

max({{1<[Businessyear] = {$(=year(today(2)))}>}  [Workdays per month])

that only one number of business days per month are calulated

Regards

SamuelHaag
Contributor III
Contributor III
Author

It works! Thank you so much!