Pulling the wrong image

MEC
Bronze 4
Bronze 4

Hi,

I have a table named "Application" with the below columns Ref to another table named "Client":

Screen Shot 2023-01-13 at 9.13.07 AM.png

Client table is where I pull data like address, birthday and etc. I'm trying to pull the profile images in the "Client" table to my "Application" table using the below expression:

ANY(SELECT(Client[Photo], [_THISROW].[Maker name] = [Maker name]))

I can't seem to pull the correct image for an entry. It only captures one image for all Maker entries I make. Anyone knows what I'm doing wrong?

Thanks in advance!

 

Solved Solved
0 2 170
1 ACCEPTED SOLUTION


@MEC wrote:

I'm trying to pull the profile images in the "Client" table to my "Application" table


It's unclear what this means. Maybe you're trying to populate a virtual column?

Regardless, you should be able to use Dereference expressions. For example:

[Maker name].[Photo]

View solution in original post

2 REPLIES 2


@MEC wrote:

I'm trying to pull the profile images in the "Client" table to my "Application" table


It's unclear what this means. Maybe you're trying to populate a virtual column?

Regardless, you should be able to use Dereference expressions. For example:

[Maker name].[Photo]

Thanks! 

Top Labels in this Space