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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi! I have two sources of data like the following, in a one to many relationship using ID:
Data
| ID | Value |
| XY | $1 |
| AB | $2 |
| CZ | $3 |
Activities
| Status | ID |
| Complete | AB |
| In Progress | XY |
| Waiting | XY |
| Complete | AB |
| Waiting | CZ |
| Complete | XY |
| Complete | CZ |
I would like to have a single value in Data for Status, so that In Progress will be shown if there is any to the corresponding ID, otherwise Waiting, and if neither then Complete, as follows:
Data
| ID | Value | Status |
| XY | $1 | In Progress |
| AB | $2 | Complete |
| CZ | $3 | Waiting |
The goal is to display this in a table in the report, highlighting the progress of connected activities. There are 6 different status types (not started, etc). Essentially I want a column like this in Data, but don't know the formula:
IF 'Activities'[Status] CONTAINS "In Progress", "In Progress", IF Activities'[Status] CONTAINS "Waiting", "Waiting", IF 'Activities'[Status] CONTAINS "Complete", "Complete", ""
Is there a simple way to set this up?
Solved! Go to Solution.
Hi @Alex_ ,
Create a calculated column in Status Table:
Status Check = CALCULATE(CONCATENATEX('Status','Status'[Status],",",'Status'[Status],ASC),ALLEXCEPT('Status','Status'[ID]))Flag Check = LOOKUPVALUE('Status'[Status Check],'Status'[ID],Data[ID])Value Status =
Var Complete=SEARCH("Complete",Data[Flag Check],,-1)
Var InProgress=SEARCH("In Progress",Data[Flag Check],,-1)
Var Waiting=SEARCH("Waiting",Data[Flag Check],,-1)
var check=IF(InProgress<>-1,"In Progress",IF(Waiting<>-1,"Waiting",IF(Complete<>-1,"Complete",BLANK())))
return check
Hi @Alex_ ,
Create a calculated column in Status Table:
Status Check = CALCULATE(CONCATENATEX('Status','Status'[Status],",",'Status'[Status],ASC),ALLEXCEPT('Status','Status'[ID]))Flag Check = LOOKUPVALUE('Status'[Status Check],'Status'[ID],Data[ID])Value Status =
Var Complete=SEARCH("Complete",Data[Flag Check],,-1)
Var InProgress=SEARCH("In Progress",Data[Flag Check],,-1)
Var Waiting=SEARCH("Waiting",Data[Flag Check],,-1)
var check=IF(InProgress<>-1,"In Progress",IF(Waiting<>-1,"Waiting",IF(Complete<>-1,"Complete",BLANK())))
return check
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 51 | |
| 42 | |
| 25 | |
| 22 |
| User | Count |
|---|---|
| 139 | |
| 116 | |
| 54 | |
| 37 | |
| 31 |