Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 🙂
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |