The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!