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
Hi! I'm looking for help on how to write a 'does not start with' DAX expression.
This is what I have right now, but doesn't seem to work:
Total Sales & Credit Memos =
CALCULATE(
[Total Amount],
(LEFT('CONSOL GLENTRY'[Document No_], 2) <> "GJ"
)
I'm looking to calculate all documents that 'do not' start with "GJ".
Any help would be appreciated!
Christina
Solved! Go to Solution.
@Anonymous wrap in MAX
Total Sales & Credit Memos =
CALCULATE(
[Total Amount],
(LEFT(MAX('CONSOL GLENTRY'[Document No_]), 2) <> "GJ"
)
@Anonymous wrap in MAX
Total Sales & Credit Memos =
CALCULATE(
[Total Amount],
(LEFT(MAX('CONSOL GLENTRY'[Document No_]), 2) <> "GJ"
)
hi @Anonymous
try like:
Total Sales & Credit Memos =
CALCULATE(
[Total Amount],
FILTER(
ALL('CONSOL GLENTRY'[Document No_]),
LEFT('CONSOL GLENTRY'[Document No_], 2) <> "GJ"
)
)
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |