Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi,Can someone help me to let Customer Target Value (in red frame) show "Zero" in Project level breakdown?
Current :
Expecting result:
Backgroud: I have one customer with multiple project, but the Target is only in custoemr level, so I would like to compare the Customer Target vs Project total value in one table with project breakdown, but do not show the target value in project level.
Relationship setting:
Thank you !
Solved! Go to Solution.
Hi @Rachel_tsao ,
You can try
=
//if project returns one single value then 0 otherwise the target
IF (
HASONEVALUE ( table[project] ),
0,
[target measure]
)
or
=
IF (
HASONEVALUE ( table[customer] ),
[target measure],
0
)
but the first one might be what you're looking for
Hi @Rachel_tsao ,
You can try
=
//if project returns one single value then 0 otherwise the target
IF (
HASONEVALUE ( table[project] ),
0,
[target measure]
)
or
=
IF (
HASONEVALUE ( table[customer] ),
[target measure],
0
)
but the first one might be what you're looking for
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 38 | |
| 31 | |
| 27 |