Forum Discussion
dd88
Post Patron
3 years agoSum multiple columns values, how to?
I would like to .. Obtain the total count of blank values in Column A These are true blank values. Obtain the total count of blank values in Column B Then add the values. and store the T...
amitchandak
Super User
3 years agodd88 , Create a new measure
[CountBlankSystem1EmployeeID] +[CountBlankSystem2EmployeeID]
or create a measure
countows(filter(Table, isblank('Table'[System 1 Employee ID])) || isblank('Table'[System 2 Employee ID])) ) )
dd88
Post Patron
3 years agoMany thanks amitchandak
I used your suggestion Option 1
Create a new calculated column
Total = [CountBlankSystem1EmployeeID] +[CountBlankSystem2EmployeeID]
And it worked! Many thanks again ..