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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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