I am having trouble comparing the current useremail() who is logged in, to the table i built that has all emails, along with corresponding names.
Table 1 (Payables)
Table 2 (Initial Table)
I need to compare the current email user with Table 2 emails - and show the corresponding name of that email user.
Solved! Go to Solution.
When it says โone randomlyโ, it really means it is taking the first item from the returned list. However, in this case, the returned list should only have one entry: that entry which the column [Email] matches USEREMAIL(). Therefore, the โone randomlyโ statement isnโt a concern.
Itโs not immediately obvious why @tvinciโs expression isnโt working - it appears correct. Make sure that:
Also, an equivalent way to write the lookup statement would be:
ANY(
SELECT(Initial Table[Name],
[Email] = USEREMAIL()
)
)
lookup(useremail(),
โTable Nameโ,
โEmail Columnโ,
โColumn you want to returnโ)
Ok. I tried that. It still is not showing the [Name] from Table 2 - associated with the current useremail:
When it says โone randomlyโ, it really means it is taking the first item from the returned list. However, in this case, the returned list should only have one entry: that entry which the column [Email] matches USEREMAIL(). Therefore, the โone randomlyโ statement isnโt a concern.
Itโs not immediately obvious why @tvinciโs expression isnโt working - it appears correct. Make sure that:
Also, an equivalent way to write the lookup statement would be:
ANY(
SELECT(Initial Table[Name],
[Email] = USEREMAIL()
)
)
NM. It is working. Sorry - i am not sure why i didnโt see it earlier.
Thank you so much.
User | Count |
---|---|
16 | |
10 | |
9 | |
8 | |
3 |