Hi,
I have been trying to get a value from a linked multiple entity using entity\getLinkColumn(LINK, ID, COLUMN) but all i receive is "None".
I have confirmed that the relationship exists using entity\hasLinkMultipleId and entity\isRelated both of which return true.
What value should i be providing for COLUMN in the function above. I have been using Field names and no values have been returning.
example code running in formula
I have been trying to get a value from a linked multiple entity using entity\getLinkColumn(LINK, ID, COLUMN) but all i receive is "None".
I have confirmed that the relationship exists using entity\hasLinkMultipleId and entity\isRelated both of which return true.
What value should i be providing for COLUMN in the function above. I have been using Field names and no values have been returning.
example code running in formula
PHP Code:
$currentNpsId=array\at(npsIds, 0);
currentNps = entity\getLinkColumn('nps', $currentNpsId, 'name');
Comment