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
Hello, 🙂
I'm struggling with DAX syntax on something which seems to be a simple if :).
I've two tables in my model : the fact table seems like this :
Company, Result
A, 3
B, - 5
C, 100
D, -30
there is a link on a secondary table :
Company, Group
A, AA
B, AA
C, BB
D, BB
1) I'd like to display a table "Loss by Group"
AA, -5
BB, -30
2) If 1) is Okay, i'd like to display a table like this
total positive, 103
total negative, -35
total , 68
Can you please help me on the DAX measure syntax ?
Best regards
Solved! Go to Solution.
@Bebs , if the relation is Many to 1 (secondary)
calculate(Sum(Fact[Result]), filter(fact, Fact[Result]< 0) )
for the second done you have a column in fact and use that grouping and just count
if( Fact[Result] >=0 , "Positive", "Negative")
@Bebs , if the relation is Many to 1 (secondary)
calculate(Sum(Fact[Result]), filter(fact, Fact[Result]< 0) )
for the second done you have a column in fact and use that grouping and just count
if( Fact[Result] >=0 , "Positive", "Negative")
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |