Autofill from the same row

Hi All.
I have 4 fields (Columns) in a form and all data is of the same row:

JOBID
CUSTOMER
CUSTOMERTEL
CUSTOMEREMAIL

In JobID I have a Valid If of โ€œqryNewNotifications[JOBID]โ€ which allows me to select a known JOBID from my csv file.

How do I autofill

CUSTOMER
CUSTOMERTEL
CUSTOMEREMAIL

From that same csv which relates to that JOBID?

0 6 334
  • UX
6 REPLIES 6

Steve
Platinum 4
Platinum 4

Hi Steve.
What am I not seeing ?
I created a virtual column to test the LOOKUP function.

โ€œCustomerโ€ table:
Columns are:
[JOBID]
[CUSTOMER]
Virtual column formula test: LOOKUP(JobID,โ€œqryNewNotificationsโ€,โ€œJobIDโ€,โ€œInsuredโ€)

โ€œqryNewNotificationsโ€ table:
Columns are:
[JOBID]
[INSURED]

The formula returns nothing although the expression assistant returns:

One randomly chosen value from this list (
โ€ฆThe list of values of column โ€˜Insuredโ€™
โ€ฆfrom rows of table โ€˜qryNewNotificationsโ€™
โ€ฆwhere this condition is true: ((The value of column โ€˜JobIDโ€™) is equal to (โ€œJobIDโ€)))

JobID is unique in each table but not the KEY

I also tried: ANY(SELECT(qryNewNotifications[Insured], ([JobID]=โ€œJobIDโ€)))

Did you read the Troubleshooting section of the LOOKUP() doc?

LOOKUP([_THISROW].[JobID],โ€œqryNewNotificationsโ€,โ€œJobIDโ€,โ€œInsuredโ€)

Still returns nothingโ€ฆ

Did you try the Test button in Expression Assistant?

We have a resultโ€ฆ
I can see customers in the expression test.
I had previously viewed the table and the data, Iโ€™ll try the expression in the correct column through the form, with luck we may have resolved this.
Thank you Steve

Top Labels in this Space