Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hey all, I have a simple DAX formula in Excel Powerpivot (NOT pbi)
=calculate(sum(table[Sales])
I want to filter it so that if [X Column] contains the string "pablo", only then will the sum be calcaulted.
I've tried a bunch of different methods
For some reason 'containsstring' is not a function available
Solved! Go to Solution.
@doubleclick Try:
=
CALCULATE (
sum(table[Sales]),
FILTER (table, FIND ( "Pablo", Table[X Column],, 0 ) <> 0 )
)
Note that the function FIND is case-sensitive. Check this link for details:
https://www.sqlbi.com/articles/from-sql-to-dax-string-comparison/
B.
@doubleclick Try:
=
CALCULATE (
sum(table[Sales]),
FILTER (table, FIND ( "Pablo", Table[X Column],, 0 ) <> 0 )
)
Note that the function FIND is case-sensitive. Check this link for details:
https://www.sqlbi.com/articles/from-sql-to-dax-string-comparison/
B.
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |