Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
EF
Helper II
Helper II

lookupvalue for 1 instance out of many

Hi all,

 

I have a facts table with records, and a client table (dimclient) with one row per client. 

I would like to add details to dimclient based on the fact table. 

Example: clients can receive different services. I want a column(ServA Clients) in dimclient: IF client ever got serviceA, then give label "ServAClient". 

Additionally, another column in dimclient that gives the date of the first time they received that service. (i. ServA start date)

 

I tried: IF(lookupvalue(FactTable[ServiceType],FactTable[clientID],[clientID])="ServiceA"),"ServAClient")

I got an error message: A table of multiple values was supplied where a single value was expected.

I know that there are multiple values, but I want to find if there is 1 or more (of ServA) per client.

 

This would probably be easier in query editor but I am using calculated columns so I need it in DAX.

 

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @EF 

try to add columns

ServAClient = IF(
COUNTROWS(
FILTER('FactTable','FactTable'[clientID]=[clientID] && 'FactTable'[ServiceType]="ServiceA")
)>0, "ServAClient", ""
)

and

First Date = 
CALCULATE(MIN('FactTable'[StartDate]);FILTER(ALL('FactTable'); 'FactTable'[clientID]=[clientID] && 'FactTable'[ServiceType]="ServiceA"))

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

LinkedIn

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @EF 

try to add columns

ServAClient = IF(
COUNTROWS(
FILTER('FactTable','FactTable'[clientID]=[clientID] && 'FactTable'[ServiceType]="ServiceA")
)>0, "ServAClient", ""
)

and

First Date = 
CALCULATE(MIN('FactTable'[StartDate]);FILTER(ALL('FactTable'); 'FactTable'[clientID]=[clientID] && 'FactTable'[ServiceType]="ServiceA"))

 

do not hesitate to give a kudo to useful posts and mark solutions as solution

LinkedIn

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Worked perfectly!

Thank you!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors