Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
RenewalBIUser
Contributor III
Contributor III

How to break dynamic expression with aggr from interacting with a filter

Hello,

I'm trying to get this formula to not move when a RevenueRecognizedDate is selected, but it keeps changing.  Any ideas?

sum({1<EventType = {'Order','Change Order'}, Work_Order_Type__c = {'Install'}, IsOrderCancelled = {0}, RollingMonthFlag={1}, IsWorkOrderStatusCancelled={0}, RevenueRecognizedDate =>} Total_Labor_Cost__c)/

Aggr(NoDistinct sum({1<EventType = {'Order','Change Order'}, IsOrderCancelled = {0}, IsItemCancelled = {0}, RollingMonthFlag={1}, RevenueRecognizedDate =>} Total_Retail_Price__c),"Month and Year")

 

 

Labels (2)
2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try this.

Aggr({<RevenueRecognizedDate =>}NoDistinct sum({1<EventType = {'Order','Change Order'}, IsOrderCancelled = {0}, IsItemCancelled = {0}, RollingMonthFlag={1}, RevenueRecognizedDate =>} Total_Retail_Price__c),"Month and Year")

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
RenewalBIUser
Contributor III
Contributor III
Author

Thanks for the suggestion, however, it still filters down to the RevenueRecognizedDate range selected using that set analysis.