Skip to main content
2 answers
  1. Feb 27, 2023, 1:38 PM

    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