The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |