Forum Discussion
Sean-OReilly
5 years agoHelper IV
Measure Not adding up in Table Visual
Hi I need to a Mgt Charge of 3,000 per sub-job into the below table. Please snip of measure used and table below. Issue is that the total of the mgt charge column in the table is 3,000. It sho...
- 5 years ago
Sean-OReilly , because you have taken a static value
New measure = 3000 * count(Table[sub-job])
or
New measure = 3000 * distinctcount(Table[sub-job])
amitchandak
5 years agoSuper User
Sean-OReilly , because you have taken a static value
New measure = 3000 * count(Table[sub-job])
or
New measure = 3000 * distinctcount(Table[sub-job])
Sean-OReilly
5 years agoHelper IV
Thanks amitchandak - distinctcount function was what i was missing