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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all, i thought this was simple but am new to PowerBI and have obviously found myself in a deep end.
I have 2 related tables i want to check if a value exists on the "many" side.
In the Applications table, i want a flag to show if a task type of "Form Received" for that application ID exists in the Task table.
The yellow column is what i want to create
Solved! Go to Solution.
Hi @Jwah ,
Try this as a calculated colum in application table.
=
NOT (
ISBLANK (
CALCULATE (
COUNTROWS ( 'task' ),
FILTER (
'task',
'task'[task_type] = "Form Received"
&& 'task'[applicationid] = EARLIER ( 'application'[applicationid] )
)
)
)
)
This will count the rows where task type =form received and the applicationid matches the current row applicationid. If it doesn't return blank then the conditions are met.
Hi @Jwah ,
Try this as a calculated colum in application table.
=
NOT (
ISBLANK (
CALCULATE (
COUNTROWS ( 'task' ),
FILTER (
'task',
'task'[task_type] = "Form Received"
&& 'task'[applicationid] = EARLIER ( 'application'[applicationid] )
)
)
)
)
This will count the rows where task type =form received and the applicationid matches the current row applicationid. If it doesn't return blank then the conditions are met.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 35 | |
| 24 | |
| 22 |
| User | Count |
|---|---|
| 135 | |
| 111 | |
| 57 | |
| 44 | |
| 38 |