Forum Discussion
Sum Multiple Columns with Filters
- Anonymous2 years ago
Hi, e175429
You can try this measure.
DAX:Sum of persons = VAR _listens = CALCULATE ( SUM ( 'Table'[Listens] ) ) VAR _kind = CALCULATE ( SUM ( 'Table'[Kind] ) ) VAR _fair = CALCULATE ( SUM ( 'Table'[Fair] ) ) VAR _micromanage = CALCULATE ( SUM ( 'Table'[Micromanage] ) ) VAR _manageWorkload = CALCULATE ( SUM ( 'Table'[Manage workload] ) ) VAR _result = _listens + _kind + _fair + _micromanage + _manageWorkload RETURN _resultBest Regards,
Yang
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi, e175429
You can try this measure.
DAX:
Sum of persons =
VAR _listens =
CALCULATE ( SUM ( 'Table'[Listens] ) )
VAR _kind =
CALCULATE ( SUM ( 'Table'[Kind] ) )
VAR _fair =
CALCULATE ( SUM ( 'Table'[Fair] ) )
VAR _micromanage =
CALCULATE ( SUM ( 'Table'[Micromanage] ) )
VAR _manageWorkload =
CALCULATE ( SUM ( 'Table'[Manage workload] ) )
VAR _result = _listens + _kind + _fair + _micromanage + _manageWorkload
RETURN
_result
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum