Hello,
I am facing a problem with a pie chart. I build this screen one year ago and it was working perfectly until yesterday. I didn't touch anything but the pie is not showing. Here is the visual I'm suppose to have on left and what I have now on right: 

The code I am using is this one :
SortByColumns(
AddColumns(
GroupBy(
Filter(
CRA_CRA,
UserId = _userDomain And InputDate >= _startDateAnalytics And InputDate <= _endDateAnalytics And Not ("XX" in ThisRecord.WBS)
),
"WBS",
"TypeGroup"
),
"Total Work",
Sum(
TypeGroup,
Work
)
),
"Total Work",
SortOrder.Descending
)
Thank you in advance.