I have one dataset, and the dataset has two fields: createdby_userid and updatedby_userid , both referring to the same userId. Essentially, they are identical.
userId firstName lastName
001 kael cena
002 sharon roger
003 jack william
004 wan wish
However, I want to display the concat(firstName, ’ ', lastName) from updatedby_userid on my visual. Instead of meeting my requirement, it displays the concat(firstName, ’ ', lastName) from createdby_userid
Can someone help me how to show updatedby_userid concat(firstName, ’ ', lastName)?