Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi all,
The lookupvalue function does not show in PBI under direct query mode/dual mode. I have been seraching on the forum and did not get answers. I would really appreciate if you can help me with that. So I want to get the Required_2 column by looking up Role_2 column in Role Column and return the required number in the required_2 table. Normally, I can use the lookupvalue function. But under direct query/dual mode, the function does not work. Some people have suggested changing the settings under file=>options=>direct query, but there is no options to allow the function to work.
Thank you!
Customer | Role | Required | Role_2 | Required_2 |
1 | Inside Sales | 1 | Sales | 4 |
1 | Inside Tech | 2 | Tech | 5 |
1 | Inside Manager | 3 | Manager | 6 |
1 | Sales | 4 | Sales | 4 |
1 | Tech | 5 | Tech | 5 |
1 | Manager | 6 | Manager | 6 |
1 | VP | 7 | VP | 7 |
Solved! Go to Solution.
Hi, @abbynie08
In DirectQuery, calculated columns are limited to being intra-row, as in, they can only refer to values of other columns of the same table, without the use of any aggregate functions. You may create a measure as below,which is the same effect as lookupvalue function.
Measure =
//LOOKUPVALUE('Table'[Required_2],'Table'[Role_2],SELECTEDVALUE('Table'[Role]))
CALCULATE(
VALUES('Table'[Required_2]),
FILTER(
'Table',
'Table'[Role_2] = SELECTEDVALUE('Table'[Role])
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @abbynie08
If you take the answer of someone, please mark it as the solution to help the other members who have same problems find it more quickly. If not, let me know and I'll try to help you further. Thanks.
Best Regards
Allan
Hi, @abbynie08
In DirectQuery, calculated columns are limited to being intra-row, as in, they can only refer to values of other columns of the same table, without the use of any aggregate functions. You may create a measure as below,which is the same effect as lookupvalue function.
Measure =
//LOOKUPVALUE('Table'[Required_2],'Table'[Role_2],SELECTEDVALUE('Table'[Role]))
CALCULATE(
VALUES('Table'[Required_2]),
FILTER(
'Table',
'Table'[Role_2] = SELECTEDVALUE('Table'[Role])
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is this not possible to do as a calculated column? Especially when there's a need to filter the data
Hi,
Does this calculated column formula work?
=CALCULATE(SUM(Data[Required]),FILTER(Data,Data[Role]=EARLIER(Data[Role_2])))
@abbynie08 seems like you are referring two different tables , can you put sample data of each table and it is bit confusing what you have shown below.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
User | Count |
---|---|
93 | |
92 | |
85 | |
83 | |
49 |
User | Count |
---|---|
150 | |
142 | |
112 | |
73 | |
55 |