October 28 & 29: Experts share their secrets on how to pass the Fabric Analytics Engineer certification exam—live. Learn more
Hi There,
I wrote a DAX with filters as shown below. But I observed that those Deal statuses I haven't included in my DAX are pulling into the table like Business Office & Delivery Scheduled.
Solved! Go to Solution.
Hi @Anonymous ,
Try the formula like below:
Amount_filter =
CALCULATE (
SUM ( FactInternetSales[SalesAmount] ),
DimProduct[Color] IN { "Black", "Blue" }
)
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Try the formula like below:
Amount_filter =
CALCULATE (
SUM ( FactInternetSales[SalesAmount] ),
DimProduct[Color] IN { "Black", "Blue" }
)
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try to write
DealStatus = Filter(... IN {...})
User | Count |
---|---|
105 | |
99 | |
98 | |
86 | |
49 |
User | Count |
---|---|
162 | |
142 | |
132 | |
102 | |
63 |