Forum Discussion
Measure not working when using in table with other columns
- 6 years ago
The score column is the one that has values that create the measure.
So the column date is in relationship with Date Table, no problem with Quarters, months etc.
But the problem is when I put in the table visual along with for example Company column.
I tried your solution, but the values get too low
Hi Sab ,
Would you like to provide some sample data? The information you give is limited, I can't get the context of the table.
And you can try this measure:
NPS =
( [Promoters] - [Detractors] )
/ CALCULATE (
COUNTROWS ( 'Responses Database' ),
ALLEXCEPT (
'Responses Database',
'Responses Database'[Campany],
'Responses Database'[Quarter]
)
) * 100
- Sab6 years ago
Helper V
- Sab6 years ago
Helper V
The score column is the one that has values that create the measure.
So the column date is in relationship with Date Table, no problem with Quarters, months etc.
But the problem is when I put in the table visual along with for example Company column.
I tried your solution, but the values get too low
- Sab6 years ago
Helper V
There was no problem in measures, just the dummy data created that illusion...
Thanks all who took time to look at this.