March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I have this table with aircraft groups 320, 330, 777, and 787 and planned utilization
Table 1
Aircraft | Planned utilization |
320 | 12.5 |
330 | 12.8 |
777 | 13.1 |
787 | 12.9 |
in another table I have same aircarft group, and I want to lookup the planned utilization values based on the aircarft groups
table 2
Aircarft | Crew | Flying | planned utilization |
320 | ? | ||
330 | ? | ||
777 | ? | ||
787 | ? |
Question: How to bring planned utilization from table 1 to table 2 by creating a dax measure in power view (not power query)?
thanks
Try this calculated column:
Flying planned utilization =
LOOKUPVALUE (
Table1[Planned utilization],
Table1[Aircraft], Table2[AircraftCrew]
)
Proud to be a Super User!
Hi and thanks for trying
no it didnt work, apperantlu third item in lookupvalue has to be an expression
What error are you getting? Would you be able to provide a pbix?
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |