Forum Discussion
Total of Column
- 3 years ago
Hi Anonymous ,
Has your problem been resolved? If not, let me show you the detailed steps. I create a sample.
And a measure.
List of FullName values = MAX('Table'[Column])Result:
In the result, you don't want the List of FullName values show anything in the total row. Just create another measure.
Measure = IF ( ISFILTERED ( 'Table'[EnglishEducation] ), [List of FullName values], BLANK () )Result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
You can try something like below:
List of FullName values =
VAR _result = <your current logic goes here>
RETURN
IF(
ISFILTERED(EnglishEducation),
_result,
blank()
)
If this helps, please accept my response as solution. 👍👍
- Anonymous3 years agoNot applicable
what can i write after Var_result =
And how can i get a normal Total of salesAmount
- lukiz843 years ago
Memorable Member
You have 2 measures, one for the sales amount and one for the text "List of Fullname values"... please post those 2 and we can help you.