Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
From the example below, I want to fill column "Email Subject Line" with the value that is selected from the filter "Subject Line Template".
In another words, if for example I select "Subject BB" from the filter, all the records from column "Email Subject Line" will be filled with "Subject BB".
Any suggestion is more than welcome, thanks!
Solved! Go to Solution.
Hi @Anonymous
You can create a measure in your main table that will use your subjects table.
T6 is my subjects table.
M_Subject = SELECTEDVALUE(T6[Subject],"")
Good Luck!
A
Hi @Anonymous
You can create a measure in your main table that will use your subjects table.
T6 is my subjects table.
M_Subject = SELECTEDVALUE(T6[Subject],"")
Good Luck!
A
many thanks @Anonymous , it's working!