Skip to main content
2 Antworten
  1. 27. Feb. 2023, 13:38

    You can create a static query for grouping for list filter, something like this

     

    You can create a static query for grouping for list filter, something like this Then in your table add the selection binding. q = group q by ({{column(Dynamic_Grouping_1.selection, [

    Then in your table add the selection binding.

     

    q = group q by ({{column(Dynamic_Grouping_1.selection, ["Text2"]).asObject()}});

    q = foreach q generate {{column(Dynamic_Grouping_1.selection, ["Text2"]).asObject()}}, sum(q.'Amount') as 'A';

0/9000