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
Hello,
I have this model and I want to check if some coupon ids from transactions table are included in some campaigns from the campaign details table. Each campaign has a unique id and has some coupons. There are coupons which are inccluded to two or more campaigns with the same id number.
Thanks!
Solved! Go to Solution.
Hi @IliasKatsis
Thanks for your screenshots.
The known conditions are,
1. You want to get the description from the campaigns table and put it into the Transcation table,
2. Use the date of the Transcation table to filter the campaigns table,
3. Use the coupon_id of the Transcation table to filter the Campaign details, and then you want to filter the campaigns table by this
one idea is
Current Camp =
var _t1=SELECTCOLUMNS(FILTER(ALL('Campaign details'),'Campaign details'[Coupon ID]= MIN(Transactions[coupon_id])),"s",[Campaign ID])
return
MAXX (
FILTER (
Campaigns,
Campaigns[StartDate]<=MIN(Transactions[Transaction Date] )
&& Campaigns[EndDate]>=MIN(Transactions[Transaction Date])&& Campaigns[Campaign ID] in _t1
),
Campaigns[Description]
)
result (based on my sample)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @IliasKatsis
Thanks for reaching out to us.
>> I want to check if some coupon ids from transactions table are included in some campaigns from the campaign details table.
what's your expected output? if some coupon ids from transactions table are included in some campaigns from the campaign details table, then measure returns (?)
and could you please share some sample data to help us find the solution faster? thanks.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
what's your expected output? if some coupon ids from transactions table are included in some campaigns from the campaign details table, then measure returns (?) Then it returns the name of the current campaign.. sorry for any inconvenience.
The sample data is this : Transcation table
and Campaign details
and campaigns table
i tried this :
Hi @IliasKatsis
Thanks for your screenshots.
The known conditions are,
1. You want to get the description from the campaigns table and put it into the Transcation table,
2. Use the date of the Transcation table to filter the campaigns table,
3. Use the coupon_id of the Transcation table to filter the Campaign details, and then you want to filter the campaigns table by this
one idea is
Current Camp =
var _t1=SELECTCOLUMNS(FILTER(ALL('Campaign details'),'Campaign details'[Coupon ID]= MIN(Transactions[coupon_id])),"s",[Campaign ID])
return
MAXX (
FILTER (
Campaigns,
Campaigns[StartDate]<=MIN(Transactions[Transaction Date] )
&& Campaigns[EndDate]>=MIN(Transactions[Transaction Date])&& Campaigns[Campaign ID] in _t1
),
Campaigns[Description]
)
result (based on my sample)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@IliasKatsis Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
93 | |
87 | |
85 | |
76 | |
49 |
User | Count |
---|---|
163 | |
148 | |
103 | |
74 | |
55 |