Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Everyone,
I need to retrieve Rate.Value only where Rate.Type = 20 and input it to column in the ServiceTicketline table. Using Serviceticketline.ServiceRateTable and Rate.ServiceRateTable as the join.
Solved! Go to Solution.
Hi @Anonymous,
The formula could be like below. Please refer to Lookupvalue.
lookupColumn =
LOOKUPVALUE (
'Rate'[Value],
'Rate'[RateType], 20,
'Rate'[ServiceRatetable], [ServiceRateTable]
)If this can't achieve your goal, please provide a sample.
Best Regards,
Dale
I am looking to only pull back values where rate type is "20"
Whats the best way to do this?
My initial thought was a function like
Lookupvalue(
'Rate'[Value]where {ratetype}=20,
'Rate'[ServiceRatetable],
'Serviceticketline'[ServiceRateTable])
this function does not work.
Hi @Anonymous,
The formula could be like below. Please refer to Lookupvalue.
lookupColumn =
LOOKUPVALUE (
'Rate'[Value],
'Rate'[RateType], 20,
'Rate'[ServiceRatetable], [ServiceRateTable]
)If this can't achieve your goal, please provide a sample.
Best Regards,
Dale
Instead of mentioning values to filter, how can I write this to ignore certain values or blanks?
WOW! it worked!
Thank you
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 35 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 79 | |
| 37 | |
| 27 | |
| 25 |