Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
felix_kraemer
Contributor III
Contributor III

Set Analysis works only with single selected dimension

Hello,

I try to calculate a value based on the time when it was inserted into the system.

As long as I select one Stay_Date it returns the correct value.

felix_kraemer_0-1657536608178.png

But if I select more than one Stay_Date it returns zero.

felix_kraemer_1-1657536700456.png

What should I change to make it work?

Thank you,
Felix 

 

Labels (3)
1 Solution

Accepted Solutions
ggijben
Partner - Creator II
Partner - Creator II

Hi @felix_kraemer ,

This is not how Set Analysis works unfortunately. Set Analysis is evaluated once for a chart and it will not regard the current dimension value for each row. So it doesn't calculate the "Stay_Date - 70" part for each row, but only once for the whole chart. And since there are multiple "Stay Dates" in the chart, it goes wrong.

Im not sure how your datamodel looks like, but you could create a extra column in the script with the following formula: 

 

IF( Block_Insert_Date >= Stay_Date - 70 AND Block_Insert_Date <= Stay_Date, 1,0) AS Flag_Rooms_Picked

 

 

Then use the following formula as your measure:

 

SUM( {$< Flag_Rooms_Picked = {1} >}  Rooms_picked)

 

View solution in original post

3 Replies
sidhiq91
Specialist II
Specialist II

@felix_kraemer Could you please provide some sample data for us to look into it?

ggijben
Partner - Creator II
Partner - Creator II

Hi @felix_kraemer ,

This is not how Set Analysis works unfortunately. Set Analysis is evaluated once for a chart and it will not regard the current dimension value for each row. So it doesn't calculate the "Stay_Date - 70" part for each row, but only once for the whole chart. And since there are multiple "Stay Dates" in the chart, it goes wrong.

Im not sure how your datamodel looks like, but you could create a extra column in the script with the following formula: 

 

IF( Block_Insert_Date >= Stay_Date - 70 AND Block_Insert_Date <= Stay_Date, 1,0) AS Flag_Rooms_Picked

 

 

Then use the following formula as your measure:

 

SUM( {$< Flag_Rooms_Picked = {1} >}  Rooms_picked)

 

felix_kraemer
Contributor III
Contributor III
Author

Hi ggijben,

Thank you for your reply. 

I now understood the evaluation of set analysis. I will do the calculation at a different stage. Will work as well. 

Best regards,

Felix