March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hey guys,
I'm still struggling with DAX commands but thanks to you guys I'm learning a lot and learning it fast too!
I've got a list with all the e-mail interactions per customer in it.
XYZ-number being a unique customerID
Mailing_ID being the unique e-mail campaignID
Interaction_type consists of three options: RECIPIENT, OPEN, CLICK
Basically this column tells when customers have received an e-mail, opened an e-mail or clicked an e-mail.
I need to create a seperate table having unique mailing_id's with a column showing the Total Opens.
How can I do this?
Solved! Go to Solution.
@Anonymous
NEW TABLE =
ADDCOLUMNS (
VALUES('Table'[mailing_id]),
"Total Opens",
CALCULATE (
COUNTROWS ( 'Table' ),
'Table'[interaction_type] = "OPEN"
)
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
Hi @Anonymous,
May I ask if your problem has been solved? Did SpartaBI's post above help you? If any of the posts are helpful, then please consider accepting it as a solution to help other members find it faster. Many thanks!
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
@Anonymous
NEW TABLE =
ADDCOLUMNS (
VALUES('Table'[mailing_id]),
"Total Opens",
CALCULATE (
COUNTROWS ( 'Table' ),
'Table'[interaction_type] = "OPEN"
)
)
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
28 | |
21 | |
20 | |
13 | |
10 |