Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi all,
first post here. I dont know if it is possible with PBI but i have two tables:
Table 1:
[SERVICE_DATE] [New Column]
Table 2:
[DATE1] [DATE2] [TEXT MESSAGE]
I am looking to fill the [NEW COLUMN] in Table 1 with the [TEXT MESSAGE] from table 2 if [SERVICE_DATE] is equal to or between [DATE1] and [DATE2].
im lost and have tried a couple of different options with zero sucess.
Solved! Go to Solution.
HI @Anonymous,
You can use the following calculated column formula in table1 if it suitable for your requirement:
formual =
CONCATENATEX (
FILTER (
Table2,
Table2[DATE1] <= EARLIER ( Table1[SERVICE_DATE] )
&& Table2[DATE2] >= EARLIER ( Table1[SERVICE_DATE] )
),
[TEXT MESSAGE],
","
)
Regards,
Xiaoxin Sheng
HI @Anonymous,
You can use the following calculated column formula in table1 if it suitable for your requirement:
formual =
CONCATENATEX (
FILTER (
Table2,
Table2[DATE1] <= EARLIER ( Table1[SERVICE_DATE] )
&& Table2[DATE2] >= EARLIER ( Table1[SERVICE_DATE] )
),
[TEXT MESSAGE],
","
)
Regards,
Xiaoxin Sheng
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.