Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
COSTCENTER_fix =
IF(
ISBLANK('sapdata SAP_generalaccounting'[COSTCENTER]),
IF(
ISBLANK('sapdata SAP_generalaccounting'[WBS_ELEMT]),
'sapdata SAP_generalaccounting'[PROFIT_CTR],
LOOKUPVALUE('sapdata SAP_projektelement'[Ansvarigt_kostnstl], 'sapdata SAP_projektelement'[WBS_element], 'sapdata SAP_generalaccounting'[WBS_ELEMT])
),
'sapdata SAP_generalaccounting'[COSTCENTER]
)
Here is my current code that is not working.
I want to check if column COSTCENTER is blank
if it is blank use values from LOOKUPVALUE from WBS_ELEMNT
and if both are blank I want the values from PROFIT_CTR
problem is values from profit_ctr are not being entered, if both are blank this column is also blank. I cannot have blank rows in this column
Solved! Go to Solution.
may there are some non-true blank values in the column of WBS_ELEMNT
may there are some non-true blank values in the column of WBS_ELEMNT
Ah yes you are correct, now that I checked it is just no text instead of (blank). What would be the best way to fix this?
'sapdata SAP_generalaccounting'[WBS_ELEMT]=""
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 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 8 | |
| 7 |