Count of Specific Value in Another Table

I am tying to count a specific quantity in a table that references a value from another table column.  

For example, one table has a list of project names and another table a LONG list of various tasks that reference the associated project. I am trying to find the right formula to count the number of tasks per project into the project table.

Solved Solved
0 4 180
1 ACCEPTED SOLUTION

Maybe You can try something like this: 

count(select(PROJECT TASKS[PROJECT ID],[PROJECT ID]=[_THISROW].[PROJECT ID]))

View solution in original post

4 REPLIES 4

COUNT([Related Tasks])

I was trying this, referencing the column (PROJECT ID) in another table (PROJECT TASKS) which equals the PROJECT ID in the PROJECT LIST table.

COUNT(SELECT(PROJECT TASKS[PROJECT ID])) = [PROJECT ID]

I was trying this, referencing the column (PROJECT ID) in another table (PROJECT TASKS) which equals the PROJECT ID in the PROJECT LIST table.

COUNT(SELECT(PROJECT TASKS[PROJECT ID])) = [PROJECT ID]

Maybe You can try something like this: 

count(select(PROJECT TASKS[PROJECT ID],[PROJECT ID]=[_THISROW].[PROJECT ID]))

Top Labels in this Space