Forum Discussion
prashantPBI
9 years agoRegular Visitor
Summing values in a field
Hi Everybody, I am working on some Health and Safety Data - could you please help with my problem. I have a cloumn for Safety Classifications, within the coulmn I have Safety Interactions, Go...
- Anonymous9 years ago
If I understood...
Proactives = CALCULATE(COUNT('Data Tracker'[Safety Classification]), 'Data Tracker'[Safety Classification] = "Safety Interactions" ) + CALCULATE(COUNT('Data Tracker'[Safety Classification]), 'Data Tracker'[Safety Classification] = "Good Catch" )If I not understood, can you show your data?
Anonymous
9 years agoNot applicable
Create a new measure with the follwing code:
Proactives = COUNT(YOUR_TABLE[Safety Interactions]) + COUNT(YOUR_TABLE[Good Catch])
Hope it helps!
prashantPBI
9 years agoRegular Visitor
Hi Anonymous
Thanks. But I should have been clearer. Both Safety Interactions and the Good Catch are within the same column in the table
So my table name is Data Tracker -
Column name is Safety Classification
The Safety Classification column has all the designations like Safety Interactions and Good Catch and I am having trouble summing that up.
Hope that makes sense.