Forum Discussion
AnkurSharma
Helper I
3 years agoTotal missing in measure
Hi everyone, I created one measure which shows count but it is not showing me total in the end. Thanks for your time and help. https://emails.azure.microsoft.com/redirect/?destination=ht...
- 3 years ago
Hi, AnkurSharma
Try to add another measure like:
Result = SUMX(VALUES(test[Company]),[Company count])Best Regards,
Community Support Team _ Eason
AnkurSharma
Helper I
3 years agoHI Greg
can you help me with Hason filter on this measure?
CALCULATE(COUNTROWS('Sheet1'),FILTER('Sheet1',CONTAINSSTRING('Sheet1'[Column1],MAX(test[Company]))))
i tried this but not working
IF(HASONFILTER(
CALCULATE(COUNTROWS('Sheet1'),FILTER('Sheet1',CONTAINSSTRING('Sheet1'[Column1],MAX(test[Company]))))
Anonymous
3 years agoNot applicable
Hello the measure shoulf be the same so example
Measure1 = CALCULATE(countrows(sheet1),filter(sheet1,containstring(sheet1[column1],max(test[company]))
Then
IF(HASONEFILTER(table[main column on your visual table]),[Measure1]
- AnkurSharma3 years ago
Helper I
Measure = IF(HASONEFILTER(test[Company]),CALCULATE(COUNTROWS('Sheet1'),FILTER('Sheet1',CONTAINSSTRING('Sheet1'[Column1],MAX(test[Company])))))Tried but no success still no totals.- v-easonf-msft3 years ago
Community Support
Hi, AnkurSharma
Try to add another measure like:
Result = SUMX(VALUES(test[Company]),[Company count])Best Regards,
Community Support Team _ Eason