The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
9 | |
7 |