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 guys,
I've got a table called 'Data' and I need to create a new table out of this one, only with the following filters:
The column fonds needs to be "Alliance"
The column interaction_type needs to be "OPEN"
How can I do this using DAX?
With kind regards,
Lazzanova
Solved! Go to Solution.
@Anonymous :
TABLE2 =
FILTER (
TABLE1,
TABLE1[fonds] = "Alliance" && TABLE1[interaction_type] = "OPEN"
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
@Anonymous :
TABLE2 =
FILTER (
TABLE1,
TABLE1[fonds] = "Alliance" && TABLE1[interaction_type] = "OPEN"
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |