Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowGet certified as a Fabric Data Engineer: Check your eligibility for a 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700. Get started
Hi all,
I have a data set that shows multiple forms downloaded by prospects, the fields used were created date/time, contact id and program names. The data can show multiple lines of same contact id with different date/time and each line shows different program names.
The desired result is to show something like this:
contact id Program of Interest
xxxxx WLP, AMLP, SDM, LCT ( program name to show based on earliest created date/time )
I will also like to split the Program name afterwards in different columns like below,
I am not sure if below formula is the best way to achieve the above result but I think it didnt take into consideration the contact id which I am stuck, hence any advice will be greatly appreciated!
Solved! Go to Solution.
@Lily_Lai346 , Based on what I got, check if this can help
Programme of Interest by Creation Date =
CONCATENATEX(
FILTER(
SUMMARIZE(
MFSA,
MFSA[Contact ID],
"EarliestDate", MIN(MFSA[Created Date/Time (FRA)]),
MFSA[Program Name]
),
[EarliestDate] = CALCULATE(MIN(MFSA[Created Date/Time (FRA)]), ALLEXCEPT(MFSA, MFSA[Contact ID]))
),
MFSA[Program Name],
", "
)
@Lily_Lai346 , Based on what I got, check if this can help
Programme of Interest by Creation Date =
CONCATENATEX(
FILTER(
SUMMARIZE(
MFSA,
MFSA[Contact ID],
"EarliestDate", MIN(MFSA[Created Date/Time (FRA)]),
MFSA[Program Name]
),
[EarliestDate] = CALCULATE(MIN(MFSA[Created Date/Time (FRA)]), ALLEXCEPT(MFSA, MFSA[Contact ID]))
),
MFSA[Program Name],
", "
)
Thanks so much Amit, it works!
Cheers,
Lily
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
146 | |
72 | |
63 | |
52 | |
51 |
User | Count |
---|---|
208 | |
91 | |
62 | |
59 | |
56 |