Ok here is my situation.
I have a Table titled ALL. I have a column in the table named Points_Assigned. I also have another column named Last_Name and First_Name.
As you can see in my attachment, I then have a Textinput box, that I want to use a Sum function on, to calculate the total points given, for the student that is chosen in the first and last name textboxes.
The formula I am trying to use is as such....CALCULATE(Sum('All'[Points_Assigned]);'ALL'[Last_Name] = Nameinput.text;'All'[First_Name] = FirstNameInput.text)
However I am getting an error that says Invalid ArguementType Table, Expecting a Number Value Instead.
I have tried so many different iterations of this, but cannot get a sum function to work here.