Filter with calculation field

Comments

2 comments

  • Fritz Feger

    Filters and views can only be built upon contacts, categories, relationships, dates and tags, not upon calculation fields - at least not with strings. To my knowledge there are two roads:

    1. create a new calculation field with the same logic, but not with a text output but a number output (you can't convert the existing calc field, that's why you need to make a new one). I usually do it like that: 0 if inactive, 1 if active. Then you can filter for items where this calc field has a value greater than 1 or smaller than one. Since you only have two states (active and inactive) this could do it for you. You can't however make a view with sub-views "inactive" and "active", you can only make one view for active items and one for inactive.
    2. create a category field with "active" and "inactive". Then, create a GlobiFlow where you use your calculation field (string or number, doesn't matter) as filter for the action "update item" and let GF set the respective status with the category field. Actually you might need two flows, one upon "create item" and one upon "update item". 

    You might think that road 2 is just perfect. But there's one possible obstacle: if the calculation field is the only thing that changes, this won't trigger a GlobiFlow. Changes you make in related apps leading to a change in your calculation field will do just that but not fire a trigger. In that case you'd need a third GlobiFlow in the related app which, upon editing the field influencing your calculation, triggers the flow updating your category.

    0
    Comment actions Permalink
  • Rainer Grabowski

    Hi Julien,

    apps can't be filtered by text - and your calculation field is text (type). But it's possible to filter views by calculation fields if they are number type or date type.
    In your case I recommend to add another calculation field e.g. labeled as "Activity Filter" (can be Always hidden) and enter:

    @Activity == "Active" ? 0 : 1 

    Alternate: enter the same code as in the other calculation field but with output 0/1 instead of Active/Inactive. 

    That calculation field will be number type (in the field settings -the little triangle on the left side of the brick - you can define the decimals, set it to 0). And now you can create a view "Inactive" by selecting the field "Activity Filter" in the filter dropdown list and entering 1 in the filter field "from" (or From 0 To 0 to filter the Actives). 

    Rainer

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk