How to have dashboard filters affect a formula filer?
Hi DRay ,
I have this formula in Sisense Bar Chart:
(((([Total CLAIM_CNT]) )/([Total CLAIM_CNT],Prev([@Months in DATE], 12),([@Network Name])))-1)
Where I have the Category being Network Name, I also have the Network Name in the Dashboard filter but when I select a Network Name in the Dashboard filter the widget does not filter for my selected Network Name. The Network Name being in the Denominator is to get the Total Claim Count. I also know that the hierarchy for filtering in Sisense is Formula Filter > Widget fitler > then Dashboard filter.
Is there anyway to override this behavior? I still need to the overall claim counts to get the percentage by individual network names but still want to filter for the specific network name.
Hey Astroraf ,
In the share syntax, the issue is in the Prev Function.
Prev function accept the Time Field as Dimension and not as filter.
The syntax should be prev([Months in Date],12) without the @ sign.The filter should apply outside of the Prev function same as the Network Name.
Suggest to test the syntax and behavior on the Aggregation, for example: (sum([Total Value]),[@Months in Date])
to make sure that the plugin behavior works as expected. if not, please raise a support ticketBest regards