Forum Discussion
JustinDoh1
Post Prodigy
5 years agoArgument '5' in SUMMARIZE function is required
I am trying to figure out what I am missing here: I am getting error message saying 'Argument '5' in SUMMARIZE function is required' Refused_Consented_ForRefusedStep2 = VAR __Clie...
- 5 years ago
JustinDoh1 In your first SUMMARIZE, get rid of the extra comma. Also, you don't really need SUMMARIZE if you are filtering down to just one value but that's not why you are getting the error.
"__ImmunizationDate",SUM(Table1[ImmunizationDate]),
Greg_Deckler
Community Champion
5 years agoJustinDoh1 In your first SUMMARIZE, get rid of the extra comma. Also, you don't really need SUMMARIZE if you are filtering down to just one value but that's not why you are getting the error.
"__ImmunizationDate",SUM(Table1[ImmunizationDate]),
- JustinDoh15 years ago
Post Prodigy
Greg_Deckler Thank you Greg again!