Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Now, my calculated table looks like this:
FRU Status intermediate table =
ADDCOLUMNS(
VALUES('All Project v2'[Project Name]),
"Flag", [stat chart]
)VALUES() here returns all values of the [Project Name] column.
I need it to return values based on the column 'All Project v2'[Dashboard Created] = "Yes", so if the 'project' has 'dashboard' - return the column.
Solved! Go to Solution.
FRU Status intermediate table =
ADDCOLUMNS (
CALCULATETABLE (
VALUES ( 'All Project v2'[Project Name] ),
'All Project v2'[Dashboard Created] = "Yes"
),
"Flag", [stat chart]
)
Hi @Anonymous
please try
FRU Status intermediate table =
SUMMARIZE (
FILTER ( 'All Project v2', 'All Project v2'[Dashboard Created] = "Yes" ),
'All Project v2'[Project Name],
"Flag", [stat chart]
)
Hi @Anonymous
please try
FRU Status intermediate table =
SUMMARIZE (
FILTER ( 'All Project v2', 'All Project v2'[Dashboard Created] = "Yes" ),
'All Project v2'[Project Name],
"Flag", [stat chart]
)
I tried it, and it works fine, but it doesn't solve the further problem...
Well, technically, you guys gave me the solution, so...
FRU Status intermediate table =
ADDCOLUMNS (
CALCULATETABLE (
VALUES ( 'All Project v2'[Project Name] ),
'All Project v2'[Dashboard Created] = "Yes"
),
"Flag", [stat chart]
)
It does work, yes. But a new problem arose: I can't create a relationship with the table I am pulling columns from due to circular dependency.
With Values() it doesn't have CD
use DISTINCT instead of VALUES
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |