Forum Discussion
Anonymous
8 years agoNot applicable
Filtering a lookup column
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 a...
- 8 years ago
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
v-jiascu-msft
8 years agoMicrosoft Employee
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
Anonymous
8 years agoNot applicable
WOW! it worked!
Thank you