Hi myDBR Team,
I use formula to display information instead of value, but it combines of some value columns and all these're defined with dbr.sum. For example:
select 'dbr.sum', 'Value1', 'Value2';
select 'dbr.calc', '[Action]', '[Value1]>[Value2]?\'YES\':\'NO\'';
select Value1, Value2, null as 'Action[Action]' from Some_Table;
Now, the summary text in Action column will be YES or NO base on sum of Value1 and Value2. But it doesn't make sense at all. So, how to I disable the summary value in Action column?
Thanks,