Skip to content

Commit 0074a9b

Browse files
author
Daniel Thompson
committed
Fixed column naming issue on group by columns for summarize tool
1 parent 2981316 commit 0074a9b

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

Engine/SummarizeNode.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,9 @@ private string GetGroupByFunctionUIText(string columnName, GroupByFunction? grou
101101
{
102102
return columnName + " Year";
103103
}
104-
else
105-
{
106-
return columnName;
107-
}
108104
}
109105

110-
return null;
106+
return columnName;
111107
}
112108

113109
public string GetAggStr(int columnIndex, AggregationFunction aggFunction)

0 commit comments

Comments
 (0)