Forum Discussion

VarcharBI's avatar
VarcharBI
Frequent Visitor
5 years ago
Solved

Tabular Editor Scripting - "Do Not Summarize"

Hi All, Trying to create a Custom Script under Advanced Scripting in the Tabular Editor to Set Column Summarization to "Do Not Summarise" for all selected columns. The code I have is as follows:  ...
  • VarcharBI's avatar
    5 years ago

    Many many thanks to dotykier - the owner and originator of the Tabular Editor... ๐Ÿ˜€

    foreach(var c in Selected.Columns)
    {
        c.SummarizeBy = AggregateFunction.None;
    }