Forum Discussion
kky1
2 years agoHelper II
Argument 3 in CALCULATE function is required - syntax error?
Hello community - I am getting the error "Argument 3 in CALCULATE function is required for this DAX measure. Reading other posts, most of these appear to be a syntax such as an extra comma but I am ...
- 2 years ago
kky1 , remove comma in this
VAR __selected_gender_sel =
CALCULATE(
SUM('Faculty IPEDS Diversity'[Count]),
'Peer Groups'[UnitID]=__selectedUnitID, //variable selectedInstitution
)like
VAR __selected_gender_sel =
CALCULATE(
SUM('Faculty IPEDS Diversity'[Count]),
'Peer Groups'[UnitID]=__selectedUnitID //variable selectedInstitution
)
kky1
2 years agoHelper II
Thanks so much amitchandak - that was the ticket! Much appreciated for your quick eye on that!!