I have a dataverse table which one column as a choice column. I have a second column with points. I want to sum points where the choice column = 5D.
Sum(
Filter(
Students,
Class = Class.Value.5D
),
Points
)
This formula isn't working. Where am I going wrong?